fleet/frontend/components/side_panels/QuerySidePanel/_styles.scss

124 lines
2 KiB
SCSS
Raw Normal View History

2016-10-21 15:57:33 +00:00
.query-side-panel {
&__header {
margin: 0 0 $pad-small;
font-size: $x-small;
2016-12-16 16:07:35 +00:00
font-weight: $bold;
color: $core-fleet-black;
2016-10-21 15:57:33 +00:00
}
2016-12-16 16:07:35 +00:00
&__choose-table {
margin: 0 0 $pad-xlarge;
.form-field {
margin-bottom: $pad-medium;
}
2016-12-16 16:07:35 +00:00
.Select {
margin: 0 0 $pad-small;
2016-12-16 16:07:35 +00:00
}
2016-10-21 15:57:33 +00:00
}
2016-12-16 16:07:35 +00:00
&__description {
font-size: $x-small;
font-style: italic;
color: $core-fleet-black;
2016-12-16 16:07:35 +00:00
margin: 0;
2016-10-21 15:57:33 +00:00
}
2016-12-16 16:07:35 +00:00
&__platforms {
font-size: $x-small;
color: $core-fleet-black;
2016-12-16 16:07:35 +00:00
list-style: none;
margin: 0 0 $pad-xlarge;
2016-12-16 16:07:35 +00:00
padding: 0;
2021-06-07 01:56:30 +00:00
.fleeticon {
2016-12-16 16:07:35 +00:00
font-size: 18px;
margin-right: $pad-medium;
}
.icon {
margin-right: $pad-medium;
width: 20px;
height: 20px;
}
li {
height: 20px;
display: flex;
align-items: center;
padding-bottom: $pad-medium;
&:last-child {
padding-bottom: 0;
}
2016-12-16 16:07:35 +00:00
}
2016-10-21 15:57:33 +00:00
}
2016-12-16 16:07:35 +00:00
&__columns,
&__suggested-queries {
margin: 0 0 $pad-large;
2016-10-21 15:57:33 +00:00
}
2016-12-16 16:07:35 +00:00
&__column-list {
margin: 0;
padding: 0;
list-style: none;
}
&__column-wrapper {
display: flex;
2016-12-16 16:07:35 +00:00
margin: 0 0 15px;
padding-top: $pad-small;
border-top: 1px solid $ui-fleet-blue-15;
2016-10-21 15:57:33 +00:00
}
&__suggestion {
flex-grow: 1;
font-size: $x-small;
2016-12-16 16:07:35 +00:00
line-height: 1.71;
letter-spacing: 0.5px;
text-align: left;
color: $core-fleet-black;
2016-10-21 15:57:33 +00:00
}
&__load-suggestion {
align-self: center;
2016-10-21 15:57:33 +00:00
padding: 1px 5px;
2016-12-16 16:07:35 +00:00
margin: 0 0 0 10px;
2016-10-21 15:57:33 +00:00
}
}
2016-12-16 16:07:35 +00:00
.query-column-list {
&__item {
display: flex;
align-items: center;
justify-content: space-between;
color: $core-fleet-black;
2016-12-16 16:07:35 +00:00
font-size: px-to-rem(14);
padding: $pad-small 0;
2016-12-16 16:07:35 +00:00
&:first-of-type {
border: 0;
}
}
&__name {
border-radius: $border-radius;
margin-right: $pad-small;
font-size: $x-small;
font-weight: $bold;
color: $core-fleet-black;
2016-12-16 16:07:35 +00:00
}
&__description {
flex-grow: 1;
2016-12-16 16:07:35 +00:00
text-align: right;
}
&__type {
font-size: $x-small;
color: $core-fleet-black;
2016-12-16 16:07:35 +00:00
}
}