2014-08-16 10:14:31 +02:00
|
|
|
|
2015-01-22 10:14:24 +01:00
|
|
|
.login-form {
|
|
|
|
|
width: 50%;
|
|
|
|
|
float: left;
|
|
|
|
|
margin-left: 25%;
|
|
|
|
|
margin-right: 25%;
|
2015-08-28 09:24:30 +02:00
|
|
|
padding-top: 25px;
|
2015-01-22 10:14:24 +01:00
|
|
|
}
|
2014-08-16 21:54:05 +02:00
|
|
|
|
2015-01-22 10:14:24 +01:00
|
|
|
.login-box {
|
|
|
|
|
width: 700px;
|
2016-02-01 21:31:54 +01:00
|
|
|
margin: 70px auto 0 auto;
|
2015-01-22 10:14:24 +01:00
|
|
|
}
|
2014-08-16 10:14:31 +02:00
|
|
|
|
2015-01-22 10:14:24 +01:00
|
|
|
.login-box-logo {
|
|
|
|
|
text-align: center;
|
2016-02-01 21:31:54 +01:00
|
|
|
img {
|
|
|
|
|
width: 125px;
|
|
|
|
|
}
|
|
|
|
|
.icon-gf-grafana_wordmark {
|
|
|
|
|
color: @linkColor;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -90px;
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
text-shadow: 3px 3px 5px black;
|
|
|
|
|
}
|
2014-08-16 10:14:31 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-22 12:31:38 +02:00
|
|
|
.login-inner-box {
|
2015-01-21 09:51:31 +01:00
|
|
|
background: @grafanaPanelBackground;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-22 10:14:24 +01:00
|
|
|
.login-tab-header {
|
|
|
|
|
background: @grafanaTargetBackground;
|
2015-01-21 09:51:31 +01:00
|
|
|
text-align: center;
|
2015-01-22 10:14:24 +01:00
|
|
|
}
|
2015-01-21 09:51:31 +01:00
|
|
|
|
2015-01-22 10:14:24 +01:00
|
|
|
.btn-login-tab {
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background: darken(@grafanaTargetBackground, 5%);
|
|
|
|
|
color: @white;
|
2015-01-21 09:51:31 +01:00
|
|
|
}
|
2015-01-22 10:14:24 +01:00
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 170px;
|
|
|
|
|
color: @textColor;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-22 11:51:44 +01:00
|
|
|
.password-strength {
|
|
|
|
|
display: block;
|
2015-06-08 10:57:01 +02:00
|
|
|
width: 15%;
|
2015-01-22 11:51:44 +01:00
|
|
|
overflow: visible;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
padding-top: 3px;
|
|
|
|
|
color: darken(@textColor, 20%);
|
|
|
|
|
border-top: 3px solid @red;
|
|
|
|
|
&.password-strength-ok {
|
2015-06-08 10:57:01 +02:00
|
|
|
width: 40%;
|
2015-01-22 11:51:44 +01:00
|
|
|
border-top: 3px solid lighten(@yellow, 10%);
|
|
|
|
|
}
|
|
|
|
|
&.password-strength-good {
|
2015-06-08 10:57:01 +02:00
|
|
|
width: 100%;
|
2015-01-22 11:51:44 +01:00
|
|
|
border-top: 3px solid lighten(@green, 10%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-22 10:14:24 +01:00
|
|
|
.login-submit-button-row {
|
|
|
|
|
text-align: center;
|
2016-02-08 11:18:41 +01:00
|
|
|
margin-top: 30px;
|
2015-01-22 10:14:24 +01:00
|
|
|
button {
|
2016-02-08 11:18:41 +01:00
|
|
|
padding: 14px 23px;
|
|
|
|
|
font-size: 16px;
|
2015-01-22 10:14:24 +01:00
|
|
|
font-weight: bold;
|
2015-06-05 11:44:52 +02:00
|
|
|
min-width: 150px;
|
2015-01-22 10:14:24 +01:00
|
|
|
display: inline-block;
|
|
|
|
|
border: 1px solid lighten(@btnInverseBackground, 10%);
|
2015-01-21 09:51:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-oauth {
|
2016-02-08 11:18:41 +01:00
|
|
|
.btn {
|
|
|
|
|
margin: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-21 09:51:31 +01:00
|
|
|
.btn-google {
|
|
|
|
|
background: #dd4b39;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
.btn-github {
|
|
|
|
|
background: #555;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-08 11:18:41 +01:00
|
|
|
.password-recovery {
|
|
|
|
|
background: @grafanaTargetBackground;
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
a {
|
|
|
|
|
color: @grayLight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-divider {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 50%;
|
|
|
|
|
margin: 5px 25% 25px 25%;
|
|
|
|
|
|
|
|
|
|
.login-divider-line {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 10px;
|
|
|
|
|
border-bottom: 1px solid @gray;
|
|
|
|
|
|
|
|
|
|
.login-divider-text {
|
|
|
|
|
background-color: @grayDarker;
|
|
|
|
|
color: @grayLight;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-27 13:59:58 +02:00
|
|
|
.signup-page-background {
|
2015-07-19 12:34:03 +02:00
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2015-08-27 13:59:58 +02:00
|
|
|
background-image: url(../img/background_tease.jpg);
|
|
|
|
|
opacity: 0.3;
|
2015-07-19 12:34:03 +02:00
|
|
|
z-index: -1;
|
|
|
|
|
}
|
2015-07-20 15:52:49 +02:00
|
|
|
|
|
|
|
|
.invite-box {
|
|
|
|
|
text-align: center;
|
|
|
|
|
border: 1px solid @grafanaTargetFuncBackground;
|
|
|
|
|
background-color: @grafanaPanelBackground;
|
2016-01-25 22:59:48 +01:00
|
|
|
width: 800px;
|
2015-07-20 15:52:49 +02:00
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
|
|
.tight-form {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-close {
|
|
|
|
|
float: right;
|
|
|
|
|
font-size: 140%;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-tagline {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|