2016-06-02 11:05:42 +05:30
|
|
|
.account-well {
|
|
|
|
padding: 10px;
|
2017-08-17 22:00:37 +05:30
|
|
|
background-color: $gray-light;
|
|
|
|
border: 1px solid $border-color;
|
2016-06-02 11:05:42 +05:30
|
|
|
border-radius: $border-radius-base;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding-left: 20px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.provider-btn-group {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
2019-02-15 15:39:39 +05:30
|
|
|
margin-bottom: 10px;
|
2017-08-17 22:00:37 +05:30
|
|
|
border: 1px solid $border-color;
|
2016-06-02 11:05:42 +05:30
|
|
|
border-radius: 3px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
2019-02-15 15:39:39 +05:30
|
|
|
margin-bottom: 0;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
.social-provider-btn-image {
|
|
|
|
> img {
|
|
|
|
width: 16px;
|
|
|
|
vertical-align: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.provider-btn-image {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 10px;
|
2017-08-17 22:00:37 +05:30
|
|
|
border-right: 1px solid $border-color;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
> img {
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.provider-btn {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin-left: -3px;
|
|
|
|
line-height: 22px;
|
|
|
|
background-color: $gray-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
.oauth-applications {
|
|
|
|
form {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.last-heading {
|
|
|
|
width: 105px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-22 15:30:34 +05:30
|
|
|
.created-personal-access-token-container {
|
|
|
|
.btn-clipboard {
|
2018-05-09 12:01:36 +05:30
|
|
|
border: 1px solid $border-color;
|
2016-06-22 15:30:34 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
table.u2f-registrations {
|
2017-08-17 22:00:37 +05:30
|
|
|
th:not(:last-child),
|
|
|
|
td:not(:last-child) {
|
2016-09-13 17:45:13 +05:30
|
|
|
border-right: solid 1px transparent;
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
.codes {
|
|
|
|
padding-top: 14px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.oauth-application-show {
|
|
|
|
.scopes-list {
|
|
|
|
padding-left: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-callout {
|
2017-09-10 17:25:29 +05:30
|
|
|
margin: 20px -5px 0;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
.bordered-box {
|
2019-07-07 11:18:12 +05:30
|
|
|
padding: 32px;
|
2017-08-17 22:00:37 +05:30
|
|
|
border: 1px solid $blue-300;
|
|
|
|
border-radius: $border-radius-default;
|
2018-03-17 18:26:18 +05:30
|
|
|
background-color: $blue-50;
|
2017-08-17 22:00:37 +05:30
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2017-09-10 17:25:29 +05:30
|
|
|
align-items: center;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.landing {
|
2017-09-10 17:25:29 +05:30
|
|
|
padding: 32px;
|
2020-01-01 13:55:28 +05:30
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.close {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
opacity: 1;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.dismiss-icon {
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
color: $blue-300;
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.dismiss-icon {
|
|
|
|
color: $blue-400;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
}
|
2020-01-01 13:55:28 +05:30
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.svg-container {
|
|
|
|
margin-right: 30px;
|
|
|
|
display: inline-block;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
svg {
|
|
|
|
height: 110px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
&.convdev {
|
|
|
|
margin: 0 0 0 30px;
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
svg {
|
|
|
|
height: 127px;
|
2017-09-10 17:25:29 +05:30
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
2020-01-01 13:55:28 +05:30
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.user-callout-copy {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
max-width: 570px;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
@include media-breakpoint-down(xs) {
|
2017-08-17 22:00:37 +05:30
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.bordered-box {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
.svg-container,
|
|
|
|
.user-callout-copy {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
svg {
|
|
|
|
height: 75px;
|
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
&.convdev {
|
|
|
|
margin: $gl-padding auto 0;
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
svg {
|
|
|
|
height: 120px;
|
2017-09-10 17:25:29 +05:30
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
.help-block {
|
|
|
|
color: $gl-text-color-secondary;
|
2018-11-18 11:00:15 +05:30
|
|
|
}
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
.gitlab-slack-slack-logo {
|
|
|
|
transform: scale(200%); // Slack logo SVG is scaled down 50% and has empty space around it
|
2019-07-07 11:18:12 +05:30
|
|
|
}
|