mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
1dda03120e
https://fedorahosted.org/freeipa/ticket/1565 The ipa.css, ipa_error.css and ipa_migration.css contain some duplicate definitions which cause maintenance problems. Additional changes: * fixed whitespaces in ipa.css * unified headings in config pages
96 lines
2.3 KiB
CSS
96 lines
2.3 KiB
CSS
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
* Adam Young <ayoung@redhat.com>
|
|
* Endi Sukma Dewata <edewata@redhat.com>
|
|
* Kyle Baker <kybaker@redhat.com>
|
|
*
|
|
* Copyright (C) 2010 Red Hat
|
|
*/
|
|
|
|
/* Migration */
|
|
|
|
h1 {
|
|
color: #333333;
|
|
font-family: "Overpass Bold", "Liberation Sans", Arial, sans-serif;
|
|
font-size: 1.5em;
|
|
font-weight: normal;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
.formcontent {
|
|
padding: 0 1em 2em 2em;
|
|
}
|
|
|
|
#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;
|
|
padding: 1em 1em 0 0;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
#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: 248px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
.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;
|
|
} |