mirror of
https://github.com/ansible/awx.git
synced 2026-01-29 23:34:42 -03:30
256 lines
4.7 KiB
Plaintext
256 lines
4.7 KiB
Plaintext
@import "../branding/colors.default.less";
|
|
.SmartSearch {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.SmartSearch-form {
|
|
width: 100%;
|
|
}
|
|
|
|
.SmartSearch-bar {
|
|
display: flex;
|
|
padding: 0;
|
|
font-size: 12px;
|
|
align-items: stretch;
|
|
line-height: 20px;
|
|
width: 50%;
|
|
}
|
|
|
|
.SmartSearch-bar--fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.SmartSearch-tags{
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.SmartSearch-bar i {
|
|
font-size: 16px;
|
|
color: @default-icon;
|
|
}
|
|
|
|
.SmartSearch-searchTermContainer {
|
|
flex: initial;
|
|
width: 100%;
|
|
border: 1px solid @b7grey;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
background-color: @default-bg;
|
|
position: relative;
|
|
height: 34px;
|
|
}
|
|
|
|
.SmartSearch-searchTermContainer.is-open {
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.SmartSearch-input {
|
|
flex: 1 0 auto;
|
|
margin: 0 10px;
|
|
border: none;
|
|
font-size: 14px;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.SmartSearch-input:focus,
|
|
.SmartSearch-input:active {
|
|
outline: 0;
|
|
}
|
|
|
|
.SmartSearch-searchTermContainer input:placeholder-shown {
|
|
color: @default-icon !important;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.SmartSearch-searchButton {
|
|
flex: initial;
|
|
margin-left: auto;
|
|
padding: 8px 10px;
|
|
border-left: 1px solid @b7grey;
|
|
background-color: @default-bg;
|
|
cursor: pointer;
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.SmartSearch-searchButton:hover {
|
|
background-color: @default-tertiary-bg;
|
|
}
|
|
|
|
.SmartSearch-flexContainer {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.SmartSearch-tagContainer {
|
|
display: flex;
|
|
max-width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.SmartSearch-tag {
|
|
border-radius: 5px;
|
|
padding: 2px 10px;
|
|
margin: 0px;
|
|
font-size: 12px;
|
|
color: @default-interface-txt;
|
|
background-color: @default-bg;
|
|
margin-right: 10px;
|
|
max-width: 100%;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
height: 20px;
|
|
}
|
|
|
|
.SmartSearch-tag--deletable {
|
|
margin-right: 0px;
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
border-right: 0;
|
|
max-width: ~"calc(100% - 23px)";
|
|
background-color: @default-link;
|
|
color: @default-bg;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.SmartSearch-deleteContainer {
|
|
background-color: @default-link!important;
|
|
color: white;
|
|
background-color: @default-bg;
|
|
border-top-left-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
padding: 0 5px;
|
|
margin: 0px;
|
|
align-items: center;
|
|
display: flex;
|
|
cursor: pointer;
|
|
height: 20px;
|
|
}
|
|
|
|
.SmartSearch-tagDelete {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.SmartSearch-name {
|
|
flex: initial;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.SmartSearch-tag--deletable > .SmartSearch-name {
|
|
max-width: ~"calc(100% - 23px)";
|
|
}
|
|
|
|
.SmartSearch-deleteContainer:hover,
|
|
{
|
|
border-color: @default-err;
|
|
background-color: @default-err!important;
|
|
}
|
|
|
|
.SmartSearch-deleteContainer:hover > .SmartSearch-tagDelete {
|
|
color: @default-bg;
|
|
}
|
|
.SmartSearch-clearAll{
|
|
font-size: 10px;
|
|
padding-top: 14px;
|
|
}
|
|
.SmartSearch-keyToggle {
|
|
margin-right: auto;
|
|
margin-left: 20px;
|
|
text-transform: uppercase;
|
|
background-color: @default-bg;
|
|
border-radius: 5px;
|
|
color: @default-interface-txt;
|
|
border: 1px solid @b7grey;
|
|
cursor: pointer;
|
|
width: 70px;
|
|
height: 34px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.SmartSearch-keyToggle:hover {
|
|
background-color: @default-tertiary-bg;
|
|
}
|
|
|
|
.SmartSearch-keyToggle.is-active {
|
|
background-color: @default-link;
|
|
border-color: @default-link;
|
|
color: @default-bg;
|
|
&:hover{
|
|
background-color: @default-link-hov;
|
|
}
|
|
}
|
|
|
|
.SmartSearch-keyPane {
|
|
max-height: 215px;
|
|
overflow: auto;
|
|
margin: 10px 0 0 0;
|
|
font-size: 12px;
|
|
width: 100%;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
border: 1px solid @d7grey;
|
|
background-color: @login-notice-bg;
|
|
color: @login-notice-text;
|
|
position: relative;
|
|
}
|
|
|
|
.SmartSearch-keyRow {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.SmartSearch-keyRow:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.SmartSearch-keyName {
|
|
flex: 1 0 auto;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
.SmartSearch-keyComparators {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.SmartSearch-keyPane--exit {
|
|
background-color: @login-notice-bg;
|
|
}
|
|
|
|
.SmartSearch-examples {
|
|
display: flex;
|
|
}
|
|
|
|
.SmartSearch-examples--title {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.SmartSearch-examples--search {
|
|
color: @default-err;
|
|
background-color: @default-bg;
|
|
border: 1px solid @default-border;
|
|
border-radius: 5px;
|
|
padding: 0px 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
|
|
// Additional modal specific styles
|
|
.modal-body, #add-permissions-modal,
|
|
.JobResults {
|
|
.SmartSearch-searchTermContainer {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
.SmartSearch-bar {
|
|
width: 100%;
|
|
}
|
|
}
|