mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-04 07:01:49 -05:00
* Bring UI/UX inline with recent changes * Use select components as a stopgap for credential_types and orgs * Add tabs to permissions view * Add Organization model
28 lines
547 B
Plaintext
28 lines
547 B
Plaintext
.at-TabGroup {
|
|
margin-top: @at-space-6x;
|
|
}
|
|
|
|
.at-Tab {
|
|
margin: 0 @at-space-5x 0 0;
|
|
font-size: @at-font-size;
|
|
}
|
|
|
|
.at-Tab--active {
|
|
&, &:hover, &:active, &:focus {
|
|
color: @at-white;
|
|
background-color: @at-gray-dark-3x;
|
|
border-color: @at-gray-dark-3x;
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
.at-Tab--disabled {
|
|
&, &:hover, &:active, &:focus {
|
|
background-color: @at-white;
|
|
color: @at-gray-dark-2x;
|
|
border-color: @at-gray-dark-2x;
|
|
opacity: 0.65;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|