debian-mirror-gitlab/app/assets/stylesheets/pages/settings.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.4 KiB
SCSS
Raw Normal View History

2018-03-17 18:26:18 +05:30
.visibility-level-setting {
2022-08-13 15:12:31 +05:30
.option-description,
.option-disabled-reason {
2023-03-04 22:38:38 +05:30
color: var(--gray-700, $gray-700);
2022-08-13 15:12:31 +05:30
}
.option-disabled-reason {
display: none;
}
.disabled {
svg {
opacity: 0.5;
2018-03-17 18:26:18 +05:30
}
2022-08-13 15:12:31 +05:30
.option-description {
2018-03-17 18:26:18 +05:30
display: none;
}
2022-08-13 15:12:31 +05:30
.option-disabled-reason {
display: block;
2018-03-17 18:26:18 +05:30
}
}
}
2019-07-07 11:18:12 +05:30
.saml-settings.info-well {
.form-control[readonly] {
2023-03-04 22:38:38 +05:30
background: var(--white, $white);
2019-07-07 11:18:12 +05:30
}
}
2022-03-02 08:16:31 +05:30
.doorkeeper-authorize {
max-width: px-to-rem(500px);
2018-03-17 18:26:18 +05:30
}
2018-05-09 12:01:36 +05:30
.created-deploy-token-container {
.deploy-token-field {
width: 90%;
display: inline;
}
.btn-clipboard {
2023-03-04 22:38:38 +05:30
background-color: var(--white, $white);
border: 1px solid var(--gray-100, $gray-100);
2018-05-09 12:01:36 +05:30
}
.deploy-token-help-block {
display: block;
margin-bottom: 0;
}
}
2018-11-20 20:47:30 +05:30
2020-10-24 23:57:45 +05:30
.ci-variable-table,
2022-08-13 15:12:31 +05:30
.deploy-freeze-table,
.ci-secure-files-table {
2020-04-08 14:13:33 +05:30
table {
tr {
td,
th {
padding-left: 0;
}
2020-11-24 15:15:51 +05:30
// When tables are "stacked", restore td padding
@media(max-width: map-get($grid-breakpoints, lg)) {
td {
padding-left: $gl-spacing-scale-5;
}
}
2020-04-08 14:13:33 +05:30
}
}
@media(max-width: map-get($grid-breakpoints, lg)-1) {
.truncated-container {
justify-content: flex-end;
}
}
}
2022-10-11 01:57:18 +05:30
2023-06-20 00:43:36 +05:30
.gl-md-flex-nowrap.gl-md-flex-nowrap {
2022-10-11 01:57:18 +05:30
@include gl-media-breakpoint-up(md) {
2023-06-20 00:43:36 +05:30
@include gl-flex-nowrap;
2022-10-11 01:57:18 +05:30
}
}