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

157 lines
2.7 KiB
SCSS
Raw Normal View History

2018-03-17 18:26:18 +05:30
.edit-cluster-form {
.clipboard-addon {
2020-04-22 19:07:51 +05:30
background-color: $white;
2018-03-17 18:26:18 +05:30
}
}
2018-12-05 23:21:45 +05:30
.cluster-application-row {
background: $gray-lighter;
&.cluster-application-installed {
background: none;
}
.settings-message {
padding: $gl-vert-padding $gl-padding-8;
}
}
@media (min-width: map-get($grid-breakpoints, md)) {
.cluster-application-list {
border: 1px solid $border-color;
border-radius: $border-radius-default;
}
.cluster-application-row {
border-bottom: 1px solid $border-color;
padding: $gl-padding;
2019-02-15 15:39:39 +05:30
&:last-child {
border-bottom: 0;
border-bottom-left-radius: calc(#{$border-radius-default} - 1px);
border-bottom-right-radius: calc(#{$border-radius-default} - 1px);
}
2018-12-05 23:21:45 +05:30
}
}
.cluster-application-logo {
2020-04-22 19:07:51 +05:30
border: 3px solid $white;
2018-12-05 23:21:45 +05:30
box-shadow: 0 0 0 1px $gray-normal;
&.avatar:hover {
2020-04-22 19:07:51 +05:30
border-color: $white;
2018-12-05 23:21:45 +05:30
}
}
.cluster-application-warning {
font-weight: bold;
text-align: center;
padding: $gl-padding;
border-bottom: 1px solid $white-normal;
.svg-container {
display: inline-block;
vertical-align: middle;
margin-right: $gl-padding-8;
width: 40px;
height: 40px;
}
}
.cluster-application-description {
flex: 1;
}
.cluster-application-disabled {
opacity: 0.5;
2018-03-17 18:26:18 +05:30
}
.clusters-dropdown-menu {
max-width: 100%;
}
2018-11-08 19:23:39 +05:30
.clusters-error-alert {
width: 100%;
}
2018-03-17 18:26:18 +05:30
.clusters-container {
.nav-bar-right {
padding: $gl-padding-top $gl-padding;
}
2019-02-15 15:39:39 +05:30
.card {
margin-bottom: $gl-vert-padding;
}
2018-03-17 18:26:18 +05:30
.empty-state .svg-content img {
width: 145px;
}
.top-area .nav-controls > .btn.btn-add-cluster {
margin-right: 0;
}
2019-02-15 15:39:39 +05:30
.clusters-table {
background-color: $gray-light;
padding: $gl-padding-8;
}
.badge-light {
background-color: $white-normal;
}
.gl-responsive-table-row {
padding: $gl-padding;
border: 0;
&.table-row-header {
2021-04-17 20:07:23 +05:30
// stylelint-disable-next-line
2019-02-15 15:39:39 +05:30
background-color: none;
border: 0;
font-weight: bold;
2020-11-24 15:15:51 +05:30
color: $gray-500;
2019-02-15 15:39:39 +05:30
}
}
}
.cluster-warning {
@include alert-variant(theme-color-level('warning', $alert-bg-level), theme-color-level('warning', $alert-border-level), theme-color-level('warning', $alert-color-level));
2018-03-17 18:26:18 +05:30
}
2018-10-15 14:42:47 +05:30
.gcp-signup-offer {
2018-11-18 11:00:15 +05:30
border-left-color: $blue-500;
2018-10-15 14:42:47 +05:30
2018-11-18 11:00:15 +05:30
svg {
fill: $blue-500;
vertical-align: middle;
2018-10-15 14:42:47 +05:30
}
2018-11-18 11:00:15 +05:30
.gcp-signup-offer--content {
display: flex;
2018-10-15 14:42:47 +05:30
2018-11-18 11:00:15 +05:30
h4 {
font-size: 16px;
line-height: 24px;
2018-10-15 14:42:47 +05:30
}
2018-11-18 11:00:15 +05:30
.gcp-signup-offer--icon {
align-self: flex-start;
2018-10-15 14:42:47 +05:30
}
}
}
2019-12-04 20:38:33 +05:30
.cluster-deployments-warning {
2020-11-24 15:15:51 +05:30
color: $orange-500;
2019-12-04 20:38:33 +05:30
}
.badge.pods-badge {
color: $black;
font-weight: $gl-font-weight-bold;
}
2020-04-08 14:13:33 +05:30
.cluster-status-indicator {
&.disabled {
2020-10-24 23:57:45 +05:30
background-color: $gray-400;
2020-04-08 14:13:33 +05:30
}
}