mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 08:21:05 -06:00
dff5f6319f
Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
641 lines
11 KiB
CSS
641 lines
11 KiB
CSS
|
|
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
* Adam Young <ayoung@redhat.com>
|
|
* Endi Sukma Dewata <edewata@redhat.com>
|
|
* Kyle Baker <kybaker@redhat.com>
|
|
* Petr Vobornik <pvoborni@redhat.com>
|
|
*
|
|
* Copyright (C) 2010 Red Hat
|
|
*/
|
|
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
overflow: auto;
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
textarea[readonly] {
|
|
color: Gray;
|
|
}
|
|
|
|
.network-activity-indicator {
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
margin-right: 5px;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* ---- Container ---- */
|
|
|
|
.app-container {
|
|
height: 100%;
|
|
}
|
|
|
|
/* ---- Password expiration */
|
|
|
|
.header-passwordexpires {
|
|
color: red;
|
|
font-weight: bold;
|
|
padding: 7px 10px;
|
|
line-height: 1;
|
|
}
|
|
|
|
/* ---- Notification area ---- */
|
|
|
|
.notification-area {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 15px;
|
|
}
|
|
|
|
.notification-area div {
|
|
position: relative;
|
|
left: -50%;
|
|
|
|
line-height: 1.5em;
|
|
z-index: 20;
|
|
padding: 4px;
|
|
text-align: center;
|
|
word-wrap: break-word;
|
|
max-width: 500px;
|
|
}
|
|
|
|
/* ---- Facet ---- */
|
|
|
|
.facet {
|
|
position: relative;
|
|
display: none;
|
|
}
|
|
|
|
.active-facet {
|
|
display: block;
|
|
}
|
|
|
|
.facet-title {
|
|
color: gray;
|
|
}
|
|
|
|
.facet-pkey {
|
|
color:black;
|
|
text-transform: none;
|
|
}
|
|
|
|
.breadcrumb {
|
|
padding: 0;
|
|
margin: 5px 0 0 0;
|
|
}
|
|
|
|
.breadcrumb a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* ---- Facet Tabs ---- */
|
|
|
|
.facet-group {
|
|
float: left;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.facet-group-label {
|
|
height: 20px;
|
|
}
|
|
|
|
.facet-tab {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.facet-tab li {
|
|
display: inline-block;
|
|
padding-right: 1px;
|
|
}
|
|
|
|
.facet-tab li a {
|
|
background-color: #dedbde;
|
|
border-left: 1px solid #c9c3ba;
|
|
border-right: 1px solid #c9c3ba;
|
|
margin: 0 0 0;
|
|
padding: 8px 16px 4px 16px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
line-height: 19px;
|
|
color: #666666;
|
|
}
|
|
|
|
.facet-tab li a.selected {
|
|
color: #6C6F73;
|
|
background-color: #f1f0ee;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.facet-tab li.settings {
|
|
margin-left:1em; margin-right:1em;
|
|
}
|
|
|
|
|
|
/* Facet tabs coloring */
|
|
|
|
.facet-group li a {
|
|
background-image: url(images/facet-tab-off.png);
|
|
background-repeat: repeat-x;
|
|
background-position: 0px -33px;
|
|
}
|
|
|
|
.facet-group li a.selected {
|
|
background-image: url(images/facet-tab-on.png);
|
|
}
|
|
|
|
div[name=settings].facet-group li a {
|
|
background-position: 0px -66px;
|
|
}
|
|
|
|
.facet-group li[name^=member] a,
|
|
.facet-group li[name^=managedby] a {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.facet-group li[name^=memberof] a {
|
|
background-position: 0px -33px;
|
|
}
|
|
|
|
/* ---- Facet Controls ---- */
|
|
|
|
.facet-controls {
|
|
padding: 5px 0px;
|
|
clear: both;
|
|
}
|
|
|
|
.right-aligned-facet-controls {
|
|
float: right;
|
|
}
|
|
|
|
.control-buttons {
|
|
float: left;
|
|
}
|
|
|
|
.control-buttons a {
|
|
float: left;
|
|
font-size: 13px;
|
|
margin-right: 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.facet-actions {
|
|
display: inline-block;
|
|
float: right;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/* --- Facet error --- */
|
|
|
|
.facet-error {
|
|
padding: 2em 15em;
|
|
background-color: white;
|
|
}
|
|
|
|
.facet-error h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.facet-error .error-details {
|
|
margin-top: 2em;
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* ---- Search Facet ---- */
|
|
|
|
.search-option {
|
|
margin-right: 8px;
|
|
width: 178px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.search-filter {
|
|
display: inline-block;
|
|
}
|
|
|
|
.search-filter input {
|
|
width: 178px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.search-filter a {
|
|
position: relative;
|
|
margin: 0 0 0 -20px;
|
|
}
|
|
|
|
.pagination-control {
|
|
float: right;
|
|
}
|
|
|
|
.pagination-control a {
|
|
cursor:pointer;
|
|
}
|
|
|
|
.pagination-control input[name=current_page] {
|
|
width: 22px;
|
|
padding: 0 6px;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ---- Details Facet ---- */
|
|
|
|
.details-content {
|
|
border-top: 1px solid #DFDFDF;
|
|
}
|
|
|
|
/* ---- Dialog ---- */
|
|
|
|
.action-button-disabled,
|
|
.action-button-disabled:focus,
|
|
.action-button-disabled:hover {
|
|
color: gray;
|
|
cursor: default;
|
|
text-decoration: none;
|
|
outline: none;
|
|
}
|
|
|
|
.aci-attribute-table tbody {
|
|
height: 10em;
|
|
}
|
|
|
|
.aci-attribute-table .aci-attribute-column {
|
|
width: 200em; /* it will fit actual width */
|
|
}
|
|
|
|
.aci-attribute-table-container {
|
|
height: 13.5em;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.strikethrough { text-decoration: line-through; }
|
|
|
|
textarea.certificate {
|
|
font-family: monospace;
|
|
width: 100%;
|
|
height: 250px;
|
|
}
|
|
|
|
.error-message-hinted {
|
|
color: red;
|
|
padding-top: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
font-family: monospace;
|
|
}
|
|
|
|
/* ---- Table ---- */
|
|
|
|
/* Used in association tables */
|
|
th div[name="buttons"] .action-button {
|
|
margin: 0 0 0 6px;
|
|
}
|
|
|
|
table.scrollable thead {
|
|
display: block;
|
|
}
|
|
|
|
table.scrollable tbody {
|
|
display: block;
|
|
overflow: auto;
|
|
}
|
|
|
|
.adder-dialog-content {
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.adder-dialog-buttons {
|
|
text-align: center;
|
|
margin-top: 9.5px;
|
|
}
|
|
|
|
/* remove padding to enlarge the tiny width of the button column */
|
|
.adder-dialog-buttons .row .col-sm-12 {
|
|
padding: 0;
|
|
}
|
|
|
|
/* add some space for vertical layout (sm and bigger) */
|
|
/* 768px == @screen-sm-min */
|
|
@media (min-width: 768px) {
|
|
.adder-dialog-buttons {
|
|
margin-top: 34px;
|
|
}
|
|
|
|
.adder-dialog-buttons button {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
/* ---- Widgets ---- */
|
|
|
|
.multivalued-widget [name=value] {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.multivalued-widget a[name=add] {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.option_widget {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.option_widget.nested {
|
|
padding-left: 40px;
|
|
}
|
|
|
|
.option_widget.inline,
|
|
.option_widget.inline > li {
|
|
display: inline;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.option_widget.columns > li {
|
|
float: left;
|
|
width: 33%;
|
|
min-width: 90px;
|
|
max-width: 150px;
|
|
}
|
|
|
|
.combobox-widget-input {
|
|
position: relative;
|
|
}
|
|
|
|
.combobox-widget-input input {
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.combobox-widget-input a i {
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin-top: 4px;
|
|
margin-right: 8px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.combobox-widget-list {
|
|
border: 1px solid #A0A0A0;
|
|
background: #EEEEEE;
|
|
padding: 5px;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.combobox-widget-list a {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.combobox-widget-list a i {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.combobox-widget-list select {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.input-group .combobox-widget-input .form-control {
|
|
position: initial;
|
|
float: inherit;
|
|
}
|
|
|
|
/* ---- HBAC Test ---- */
|
|
|
|
.hbac-test-header .search-filter {
|
|
float: right;
|
|
}
|
|
|
|
.hbac-test-title {
|
|
font-size: 1.8em;
|
|
text-transform: uppercase;
|
|
margin: 0;
|
|
}
|
|
|
|
.hbac-test-title,
|
|
.hbac-test-title ~ label {
|
|
margin-right: 5px !important;
|
|
}
|
|
|
|
.hbac-test-top-panel {
|
|
position: relative;;
|
|
}
|
|
|
|
.hbac-test-navigation-buttons {
|
|
float: right;
|
|
}
|
|
|
|
/* ---- DNS ---- */
|
|
|
|
.dnstype-table div[name=position] {
|
|
|
|
padding-right: 9px;
|
|
}
|
|
|
|
.dnstype-table td {
|
|
font-weight: normal;
|
|
}
|
|
|
|
|
|
/* --- Automember --- */
|
|
|
|
.automember-header .default_group {
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.automember-header .default_group h2 {
|
|
display: inline-block;
|
|
margin: 0 15px 0 0;
|
|
}
|
|
|
|
.automember-header .default_group label {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
/* --- Stand alone forms --- */
|
|
|
|
#formwindow {
|
|
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
|
|
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
|
|
background: none repeat scroll 0 0 #FFFFFF;
|
|
border-color: #FFFFFF #F0F0F0 #F0F0F0;
|
|
border-right: 1px solid #F0F0F0;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
color: #3F3F3F;
|
|
margin: 40px auto 100px;
|
|
width: 450px;
|
|
}
|
|
|
|
.form-box {
|
|
padding: 1em 2em;
|
|
}
|
|
|
|
#error-box, .error-box {
|
|
-moz-border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
-webkit-border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
background-color: #FFEBE8;
|
|
border: 1px solid #DD3C10;
|
|
margin: 0 2em 1em 2em;
|
|
padding: 1em 2em;
|
|
}
|
|
|
|
#success-box, .success-box {
|
|
-moz-border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
-webkit-border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
background-color: #FFEB80;
|
|
border: 1px solid #FFDE2E;
|
|
margin: 0 2em 1em 2em;
|
|
padding: 1em 2em;
|
|
}
|
|
|
|
#formwindow h2 {
|
|
background-color: #F0F0F0;
|
|
font-size: 1.6em;
|
|
padding: 18px 15px 14px 22px;
|
|
text-transform: uppercase;
|
|
margin: 0 0 1em 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.formbutton input {
|
|
float: right;
|
|
margin: 1em 1em 1em 0;
|
|
-moz-border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
-webkit-border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
background: -moz-linear-gradient(center top, #959595, #5e5e5e) repeat scroll 0 0 transparent;
|
|
background: -webkit-radial-gradient(center top, #959595, #5e5e5e) repeat scroll 0 0 transparent;
|
|
border: 1px solid #777777;
|
|
color: #ffffff;
|
|
font-weight: normal;
|
|
padding: 0.5em 0.8em;
|
|
}
|
|
|
|
.formcontent {
|
|
padding: 0em 1em 1em;
|
|
}
|
|
|
|
/* --- Login form --- */
|
|
#login li {
|
|
padding-bottom: 15px;
|
|
text-align: right;
|
|
width: 370px;
|
|
list-style-type: none;
|
|
}
|
|
|
|
#login li input {
|
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
margin-left: 15px;
|
|
padding: 2px 10px;
|
|
width: 210px;
|
|
}
|
|
|
|
#login li label, #modal li label {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
list-style-type: none;
|
|
}
|
|
|
|
form#login {
|
|
display: inline-block;
|
|
padding-bottom: 15px;
|
|
width: 418px;
|
|
}
|
|
|
|
/* --- Login page --- */
|
|
|
|
.login-page #formwindow {
|
|
margin-top: 100px;
|
|
}
|
|
|
|
/* --- Facet title states --- */
|
|
|
|
.facet-title h1 {
|
|
display: inline-block;
|
|
}
|
|
|
|
.facet-title .header-icon {
|
|
display: none;
|
|
font-size: 70%;
|
|
vertical-align: 20%;
|
|
/* Font awesome style, TODO: use mixin */
|
|
display: inline-block;
|
|
font-family: FontAwesome;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.facet-title.enabled .header-icon:before {
|
|
content: "\f00c";
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.facet-title.disabled .header-icon:before {
|
|
content: "\f068";
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.facet-title.disabled h1,
|
|
.facet-title.disabled h1 .facet-pkey{
|
|
color: gray;
|
|
}
|
|
|
|
.action-panel {
|
|
position: absolute;
|
|
right: 0;
|
|
top: -30px;
|
|
|
|
width: 150px;
|
|
|
|
-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
|
|
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
.action-panel-list {
|
|
margin: 0 0 10px 0;
|
|
list-style: none;
|
|
padding: 0 0 0 15px;
|
|
}
|
|
|
|
.action-title {
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
margin: 15px 0 5px 15px;
|
|
line-height: 1em;
|
|
}
|
|
|
|
.disabled {
|
|
color: gray;
|
|
cursor: default;
|
|
}
|
|
|
|
/* --- Multiple choice widget --- */
|
|
|
|
.multiple-choice-section-header {
|
|
font-weight: bold;
|
|
font-size: 1.1em;
|
|
}
|