mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
160 lines
2.7 KiB
SCSS
160 lines
2.7 KiB
SCSS
.manage-policies-page {
|
|
&__header-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 38px;
|
|
|
|
.button-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
min-width: 266px;
|
|
}
|
|
}
|
|
|
|
&__manage-automations {
|
|
padding: $pad-small;
|
|
margin-right: $pad-small;
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.form-field {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&__text {
|
|
margin-right: $pad-large;
|
|
}
|
|
|
|
&__title {
|
|
font-size: $large;
|
|
|
|
.fleeticon {
|
|
color: $core-fleet-blue;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.fleeticon-success-check {
|
|
color: $ui-success;
|
|
}
|
|
|
|
.fleeticon-offline {
|
|
color: $ui-error;
|
|
}
|
|
}
|
|
|
|
&__description {
|
|
margin: 0;
|
|
margin-bottom: $pad-xxlarge;
|
|
|
|
h2 {
|
|
text-transform: uppercase;
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
font-size: $small;
|
|
}
|
|
|
|
p {
|
|
color: $ui-fleet-black-75;
|
|
margin: 0;
|
|
font-size: $x-small;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
&__action-button-container {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
&__advanced-button {
|
|
margin-right: $pad-medium;
|
|
}
|
|
|
|
&__sandbox-info {
|
|
margin-top: $pad-large;
|
|
margin-bottom: $pad-xxlarge;
|
|
|
|
p {
|
|
font-size: $x-small;
|
|
margin: 0;
|
|
margin-bottom: $pad-medium;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&__add-policy-link {
|
|
transition: color 150ms ease-in-out, background 150ms ease-in-out,
|
|
top 50ms ease-in-out, box-shadow 50ms ease-in-out, border 50ms ease-in-out;
|
|
position: relative;
|
|
color: $core-white;
|
|
text-decoration: none;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-left: $pad-medium;
|
|
padding-right: $pad-medium;
|
|
border-radius: 4px;
|
|
font-size: $x-small;
|
|
font-family: "Nunito Sans", sans-serif;
|
|
font-weight: $bold;
|
|
display: inline-flex;
|
|
height: 38px;
|
|
top: 0;
|
|
border: 0;
|
|
cursor: pointer;
|
|
|
|
@include button-variant(
|
|
$core-vibrant-blue,
|
|
$core-vibrant-blue-over,
|
|
$core-vibrant-blue-down
|
|
);
|
|
}
|
|
|
|
&__details {
|
|
display: inline-flex;
|
|
vertical-align: middle;
|
|
margin-left: $pad-small;
|
|
margin-top: -20px;
|
|
|
|
.hint {
|
|
color: $core-fleet-black;
|
|
|
|
&--brand {
|
|
color: $core-vibrant-blue;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__inherited-policies-button {
|
|
padding-bottom: $pad-large;
|
|
}
|
|
|
|
&__inherited-policies-table {
|
|
th {
|
|
border-right: 1px solid #e2e4ea !important;
|
|
}
|
|
|
|
.table-container__header {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.critical-tooltip {
|
|
font-weight: $regular;
|
|
}
|
|
|
|
.policy-icon {
|
|
margin-left: $pad-xsmall;
|
|
position: relative;
|
|
bottom: -1px;
|
|
}
|
|
}
|