2014-09-02 18:07:02 +05:30
|
|
|
/** COLORS **/
|
2018-11-20 20:47:30 +05:30
|
|
|
.cgray { color: $gl-text-color; }
|
2017-08-17 22:00:37 +05:30
|
|
|
.clgray { color: $common-gray-light; }
|
2018-11-20 20:47:30 +05:30
|
|
|
.cred { color: $red-500; }
|
|
|
|
.cgreen { color: $green-600; }
|
2017-08-17 22:00:37 +05:30
|
|
|
.cdark { color: $common-gray-dark; }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.text-plain,
|
|
|
|
.text-plain:hover {
|
|
|
|
color: $gl-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-secondary {
|
|
|
|
color: $gl-text-color-secondary;
|
|
|
|
}
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
.text-tertiary {
|
|
|
|
color: $gl-text-color-tertiary;
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.text-primary,
|
|
|
|
.text-primary:hover {
|
|
|
|
color: $brand-primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-success,
|
|
|
|
.text-success:hover {
|
|
|
|
color: $brand-success;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-danger,
|
|
|
|
.text-danger:hover {
|
|
|
|
color: $brand-danger;
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
.text-danger-muted,
|
|
|
|
.text-danger-muted:hover {
|
|
|
|
color: $red-300;
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.text-warning,
|
|
|
|
.text-warning:hover {
|
|
|
|
color: $brand-warning;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-info,
|
|
|
|
.text-info:hover {
|
|
|
|
color: $brand-info;
|
|
|
|
}
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2019-05-30 16:15:17 +05:30
|
|
|
.hint { font-style: italic; color: $gl-gray-400; }
|
2018-11-20 20:47:30 +05:30
|
|
|
.light { color: $gl-text-color; }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
.slead {
|
2018-11-20 20:47:30 +05:30
|
|
|
color: $gl-text-color;
|
2017-08-17 22:00:37 +05:30
|
|
|
font-size: 14px;
|
2014-09-02 18:07:02 +05:30
|
|
|
margin-bottom: 12px;
|
2018-03-17 18:26:18 +05:30
|
|
|
font-weight: $gl-font-weight-normal;
|
2014-09-02 18:07:02 +05:30
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.bold {
|
2018-03-17 18:26:18 +05:30
|
|
|
font-weight: $gl-font-weight-bold;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
.tab-content {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
&.clean {
|
|
|
|
background: none;
|
2018-03-17 18:26:18 +05:30
|
|
|
border: 0;
|
2014-09-02 18:07:02 +05:30
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
&.wrap {
|
|
|
|
word-break: break-word;
|
|
|
|
white-space: pre-wrap;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
hr {
|
2017-08-17 22:00:37 +05:30
|
|
|
margin: 24px 0;
|
|
|
|
border-top: 1px solid darken($gray-normal, 8%);
|
2015-12-23 02:04:40 +05:30
|
|
|
}
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
.str-truncated {
|
|
|
|
@include str-truncated;
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
&-30 {
|
|
|
|
@include str-truncated(30%);
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
&-60 {
|
|
|
|
@include str-truncated(60%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&-100 {
|
|
|
|
@include str-truncated(100%);
|
|
|
|
}
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.block-truncated {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
2019-05-30 16:15:17 +05:30
|
|
|
> div,
|
2017-08-17 22:00:37 +05:30
|
|
|
.str-truncated {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.item-title { font-weight: $gl-font-weight-bold; }
|
2016-01-19 16:12:03 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.author-link {
|
2018-11-20 20:47:30 +05:30
|
|
|
color: $blue-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author-link:hover {
|
|
|
|
text-decoration: none;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
table {
|
|
|
|
a code {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.loading {
|
|
|
|
margin: 20px auto;
|
|
|
|
height: 40px;
|
2018-12-05 23:21:45 +05:30
|
|
|
color: $gl-gray-700;
|
2014-09-02 18:07:02 +05:30
|
|
|
font-size: 32px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.time {
|
2018-12-05 23:21:45 +05:30
|
|
|
color: $gl-gray-400;
|
2014-09-02 18:07:02 +05:30
|
|
|
font-size: 90%;
|
|
|
|
margin: 30px 3px 3px 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlight {
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
2019-05-30 16:15:17 +05:30
|
|
|
.thin_area {
|
2014-09-02 18:07:02 +05:30
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix issue with notes & lists creating a bunch of bottom borders.
|
|
|
|
li.note {
|
2016-11-03 12:29:30 +05:30
|
|
|
img { max-width: 100%; }
|
2014-09-02 18:07:02 +05:30
|
|
|
.note-title {
|
|
|
|
li {
|
2018-03-17 18:26:18 +05:30
|
|
|
border-bottom: 0 !important;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.markdown {
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.wiki_content code,
|
|
|
|
.readme code {
|
2014-09-02 18:07:02 +05:30
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
.show-suppressed-diff,
|
2014-09-02 18:07:02 +05:30
|
|
|
.show-all-commits {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
padding: 10px;
|
2018-11-20 20:47:30 +05:30
|
|
|
background: $red-400;
|
2014-09-02 18:07:02 +05:30
|
|
|
margin: 0;
|
2017-08-17 22:00:37 +05:30
|
|
|
color: $white-light;
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
a {
|
2017-08-17 22:00:37 +05:30
|
|
|
color: $white-light;
|
2014-09-02 18:07:02 +05:30
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-30 16:15:17 +05:30
|
|
|
.warning_message {
|
|
|
|
border-left: 4px solid $orange-200;
|
|
|
|
color: $orange-700;
|
2014-09-02 18:07:02 +05:30
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
2019-05-30 16:15:17 +05:30
|
|
|
background: $orange-100;
|
2014-09-02 18:07:02 +05:30
|
|
|
padding-left: 20px;
|
|
|
|
|
|
|
|
&.centered {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.gitlab-promo {
|
|
|
|
a {
|
2018-12-05 23:21:45 +05:30
|
|
|
color: $gl-gray-350;
|
2014-09-02 18:07:02 +05:30
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.milestone {
|
|
|
|
.progress {
|
|
|
|
margin-top: 4px;
|
2017-08-17 22:00:37 +05:30
|
|
|
box-shadow: none;
|
|
|
|
background-color: $border-gray-light;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
img.emoji {
|
|
|
|
height: 20px;
|
2016-09-29 09:46:39 +05:30
|
|
|
vertical-align: top;
|
2014-09-02 18:07:02 +05:30
|
|
|
width: 20px;
|
2017-08-17 22:00:37 +05:30
|
|
|
margin-top: 1px;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.chart {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 220px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-block {
|
|
|
|
@extend .light-well;
|
|
|
|
@extend .light;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
.footer-links {
|
|
|
|
margin-bottom: 20px;
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
a {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
.card.card-body {
|
2015-12-23 02:04:40 +05:30
|
|
|
margin-bottom: $gl-padding;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
hr {
|
|
|
|
border-color: $gray-darker;
|
|
|
|
}
|
2015-11-26 14:37:03 +05:30
|
|
|
}
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
.search_box {
|
2018-11-08 19:23:39 +05:30
|
|
|
@extend .card.card-body;
|
2014-09-02 18:07:02 +05:30
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
.dropzone .dz-preview .dz-progress {
|
|
|
|
border-color: $border-color !important;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.dz-upload {
|
2018-11-20 20:47:30 +05:30
|
|
|
background: $green-500 !important;
|
2018-03-17 18:26:18 +05:30
|
|
|
}
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
.dz-message {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
.space-right {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
.alert {
|
2015-12-23 02:04:40 +05:30
|
|
|
margin-bottom: $gl-padding;
|
|
|
|
}
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
.progress {
|
|
|
|
height: 4px;
|
|
|
|
}
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
.project-item-select-holder {
|
2015-12-23 02:04:40 +05:30
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
.project-item-select {
|
2015-12-23 02:04:40 +05:30
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2016-06-02 11:05:42 +05:30
|
|
|
min-width: 250px;
|
2015-12-23 02:04:40 +05:30
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.gl-accessibility {
|
|
|
|
&:focus {
|
2018-03-17 18:26:18 +05:30
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-08-17 22:00:37 +05:30
|
|
|
top: 1px;
|
|
|
|
left: 1px;
|
|
|
|
width: auto;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 10px;
|
|
|
|
clip: auto;
|
|
|
|
text-decoration: none;
|
|
|
|
color: $gl-text-color;
|
|
|
|
background: $gray-light;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bordered-box {
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
.tooltip-inner {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
.disabled-content {
|
|
|
|
pointer-events: none;
|
2019-05-30 16:15:17 +05:30
|
|
|
opacity: .5;
|
2017-09-10 17:25:29 +05:30
|
|
|
}
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
.break-word {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
.checkbox-icon-inline-wrapper {
|
|
|
|
.checkbox {
|
|
|
|
display: inline;
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
.outline-0 {
|
|
|
|
outline: 0;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
/** COMMON CLASSES **/
|
|
|
|
.prepend-top-0 { margin-top: 0; }
|
2018-10-15 14:42:47 +05:30
|
|
|
.prepend-top-2 { margin-top: 2px; }
|
2018-12-13 13:39:08 +05:30
|
|
|
.prepend-top-4 { margin-top: $gl-padding-4; }
|
2018-03-17 18:26:18 +05:30
|
|
|
.prepend-top-5 { margin-top: 5px; }
|
|
|
|
.prepend-top-8 { margin-top: $grid-size; }
|
|
|
|
.prepend-top-10 { margin-top: 10px; }
|
|
|
|
.prepend-top-15 { margin-top: 15px; }
|
|
|
|
.prepend-top-default { margin-top: $gl-padding !important; }
|
|
|
|
.prepend-top-16 { margin-top: 16px; }
|
|
|
|
.prepend-top-20 { margin-top: 20px; }
|
|
|
|
.prepend-left-4 { margin-left: 4px; }
|
|
|
|
.prepend-left-5 { margin-left: 5px; }
|
|
|
|
.prepend-left-8 { margin-left: 8px; }
|
|
|
|
.prepend-left-10 { margin-left: 10px; }
|
|
|
|
.prepend-left-default { margin-left: $gl-padding; }
|
|
|
|
.prepend-left-20 { margin-left: 20px; }
|
2018-11-18 11:00:15 +05:30
|
|
|
.append-right-4 { margin-right: 4px; }
|
2018-03-17 18:26:18 +05:30
|
|
|
.append-right-5 { margin-right: 5px; }
|
|
|
|
.append-right-8 { margin-right: 8px; }
|
|
|
|
.append-right-10 { margin-right: 10px; }
|
|
|
|
.append-right-default { margin-right: $gl-padding; }
|
|
|
|
.append-right-20 { margin-right: 20px; }
|
|
|
|
.append-bottom-0 { margin-bottom: 0; }
|
2018-12-13 13:39:08 +05:30
|
|
|
.append-bottom-4 { margin-bottom: $gl-padding-4; }
|
2018-03-17 18:26:18 +05:30
|
|
|
.append-bottom-5 { margin-bottom: 5px; }
|
2018-10-15 14:42:47 +05:30
|
|
|
.append-bottom-8 { margin-bottom: $grid-size; }
|
2018-03-17 18:26:18 +05:30
|
|
|
.append-bottom-10 { margin-bottom: 10px; }
|
|
|
|
.append-bottom-15 { margin-bottom: 15px; }
|
|
|
|
.append-bottom-20 { margin-bottom: 20px; }
|
|
|
|
.append-bottom-default { margin-bottom: $gl-padding; }
|
|
|
|
.inline { display: inline-block; }
|
|
|
|
.center { text-align: center; }
|
|
|
|
.vertical-align-middle { vertical-align: middle; }
|
2019-03-02 22:35:43 +05:30
|
|
|
.vertical-align-sub { vertical-align: sub; }
|
2018-11-18 11:00:15 +05:30
|
|
|
.flex-align-self-center { align-self: center; }
|
|
|
|
.flex-grow { flex-grow: 1; }
|
|
|
|
.flex-no-shrink { flex-shrink: 0; }
|
2018-12-13 13:39:08 +05:30
|
|
|
.ws-initial { white-space: initial; }
|
2019-02-15 15:39:39 +05:30
|
|
|
.overflow-auto { overflow: auto; }
|
2019-03-02 22:35:43 +05:30
|
|
|
.d-flex-center {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
/** COMMON SIZING CLASSES **/
|
|
|
|
.w-0 { width: 0; }
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
.h-12em { height: 12em; }
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
.mw-460 { max-width: 460px; }
|
|
|
|
.mw-6em { max-width: 6em; }
|
2019-03-02 22:35:43 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
.min-height-0 { min-height: 0; }
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
.w-3 { width: #{3 * $grid-size}; }
|
|
|
|
|
|
|
|
.h-3 { width: #{3 * $grid-size}; }
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
/** COMMON SPACING CLASSES **/
|
|
|
|
.gl-pl-0 { padding-left: 0; }
|
|
|
|
.gl-pl-1 { padding-left: #{0.5 * $grid-size}; }
|
|
|
|
.gl-pl-2 { padding-left: $grid-size; }
|
|
|
|
.gl-pl-3 { padding-left: #{2 * $grid-size}; }
|
|
|
|
.gl-pl-4 { padding-left: #{3 * $grid-size}; }
|
|
|
|
.gl-pl-5 { padding-left: #{4 * $grid-size}; }
|
|
|
|
|
|
|
|
.gl-pr-0 { padding-right: 0; }
|
|
|
|
.gl-pr-1 { padding-right: #{0.5 * $grid-size}; }
|
|
|
|
.gl-pr-2 { padding-right: $grid-size; }
|
|
|
|
.gl-pr-3 { padding-right: #{2 * $grid-size}; }
|
|
|
|
.gl-pr-4 { padding-right: #{3 * $grid-size}; }
|
|
|
|
.gl-pr-5 { padding-right: #{4 * $grid-size}; }
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes browser specific clear icon from input fields in
|
|
|
|
* Internet Explorer 10, Internet Explorer 11, and Microsoft Edge.
|
|
|
|
* This is intended for elements which add a customized clear icon.
|
|
|
|
*
|
|
|
|
* see also https://developer.mozilla.org/en-US/docs/Web/CSS/::-ms-clear
|
|
|
|
*/
|
|
|
|
.ms-no-clear ::-ms-clear {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** COMMON POSITIONING CLASSES */
|
2019-05-30 16:15:17 +05:30
|
|
|
.position-bottom-0 { bottom: 0; }
|
|
|
|
.position-left-0 { left: 0; }
|
|
|
|
.position-right-0 { right: 0; }
|
|
|
|
.position-top-0 { top: 0; }
|