mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-30 12:43:35 -05:00
THis commit imroves conditional rendering of the container groups form for System Auditors. It also removes a ng-class condition in the IG list that was unused.
90 lines
1.7 KiB
Plaintext
90 lines
1.7 KiB
Plaintext
.noselect {
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Chrome/Safari/Opera */
|
|
-khtml-user-select: none; /* Konqueror */
|
|
-moz-user-select: none; /* Firefox */
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
user-select: none; /* Non-prefixed version, currently
|
|
not supported by any browser */
|
|
}
|
|
|
|
.atCodeMirror-label{
|
|
display: flex;
|
|
width: 100%;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.atCodeMirror-labelLeftSide{
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.atCodeMirror-labelRightSide{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.atCodeMirror-labelText{
|
|
text-transform: uppercase;
|
|
color: #707070;
|
|
font-weight: normal;
|
|
font-size: small;
|
|
padding-right: 5px;
|
|
width: 100%;
|
|
}
|
|
|
|
.atCodeMirror-toggleContainer{
|
|
margin: 0 0 0 10px;
|
|
display: initial;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.atCodeMirror-expandTextContainer{
|
|
flex: 1 0 auto;
|
|
text-align: right;
|
|
font-weight: normal;
|
|
color: @default-link;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.CodeMirror-modal .modal-dialog{
|
|
width: calc(~"100% - 200px");
|
|
height: calc(~"100vh - 80px");
|
|
}
|
|
|
|
@media screen and (min-width: 768px){
|
|
.NetworkingExtraVars .modal-dialog{
|
|
width: 700px;
|
|
}
|
|
}
|
|
|
|
.CodeMirror-modal .modal-dialog{
|
|
width: calc(~"100% - 200px");
|
|
height: calc(~"100vh - 80px");
|
|
}
|
|
|
|
.CodeMirror-modal .modal-content{
|
|
height: 100%;
|
|
}
|
|
|
|
.CodeMirror-modal .CodeMirror {
|
|
max-height: calc(~"100vh - 230px");
|
|
}
|
|
|
|
.NetworkingExtraVars .CodeMirror{
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.CodeMirror-modalControls{
|
|
float: right;
|
|
margin-top: 15px;
|
|
button {
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.atCodeMirror-badge{
|
|
display: initial;
|
|
margin-right: 20px;
|
|
}
|