mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR Moved css specific to Security/login in Security_login.css (shouldnt be in the generic Form.css declarations)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92509 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
2a53488bb8
commit
dd074069de
20
css/Form.css
20
css/Form.css
@ -143,26 +143,6 @@ form .message {
|
|||||||
border-color: #FF4040;
|
border-color: #FF4040;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** LOGIN FORM **/
|
|
||||||
|
|
||||||
#Remember {
|
|
||||||
margin: 0.5em 0 0.5em 11em !important;
|
|
||||||
}
|
|
||||||
p#Remember label {
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
#Remember input {
|
|
||||||
float: left;
|
|
||||||
margin: 0 5px 0 0;
|
|
||||||
}
|
|
||||||
#MemberLoginForm_LoginForm .Actions {
|
|
||||||
padding-left: 12em;
|
|
||||||
}
|
|
||||||
#ForgotPassword {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.typography .ss-tabset ul {
|
.typography .ss-tabset ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
@ -1,84 +1,17 @@
|
|||||||
html {
|
#Remember {
|
||||||
width : 100%;
|
margin: 0.5em 0 0.5em 11em !important;
|
||||||
height : 100%;
|
|
||||||
}
|
}
|
||||||
|
p#Remember label {
|
||||||
body {
|
display: inline-block;
|
||||||
text-align: center;
|
margin: 0;
|
||||||
width : 100%;
|
}
|
||||||
height : 100%;
|
#Remember input {
|
||||||
overflow : hidden;
|
|
||||||
background-color : #EFEFEF !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#all {
|
|
||||||
width: 500px;
|
|
||||||
border: 1px #333333 solid;
|
|
||||||
background-color : white;
|
|
||||||
text-align: left;
|
|
||||||
float:left;
|
|
||||||
position : absolute;
|
|
||||||
top : 50px;
|
|
||||||
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#intro {
|
|
||||||
margin : 10px;
|
|
||||||
padding-left : 10px;
|
|
||||||
padding-right : 10px;
|
|
||||||
font-size : 11px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
h1{
|
|
||||||
color : white;
|
|
||||||
font-size : 12px;
|
|
||||||
border-bottom : 1px solid #333333;
|
|
||||||
background-image : url(../../cms/images/textures/obar.gif);
|
|
||||||
background-repeat : repeat-x;
|
|
||||||
height : 18px;
|
|
||||||
margin-top : 0px;
|
|
||||||
padding-top : 4px;
|
|
||||||
padding-left : 10px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#supported {
|
|
||||||
display : none;
|
|
||||||
padding : 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#noSupport {
|
|
||||||
margin : 10px;
|
|
||||||
padding : 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form div.field input{
|
|
||||||
height : 26px;
|
|
||||||
font-size : 18px;
|
|
||||||
font-weight : lighter;
|
|
||||||
width : 300px;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
form div.field input.checkbox{
|
|
||||||
height : 26px;
|
|
||||||
font-size : 18px;
|
|
||||||
font-weight : lighter;
|
|
||||||
width : 16px;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset{
|
|
||||||
border : 3px solid #CCCCCC;
|
|
||||||
}
|
|
||||||
|
|
||||||
form label.left {
|
|
||||||
float: left;
|
float: left;
|
||||||
width: 8em;
|
margin: 0 5px 0 0;
|
||||||
font-size : 16px;
|
}
|
||||||
margin-top : 6px;
|
#MemberLoginForm_LoginForm .Actions {
|
||||||
|
padding-left: 12em;
|
||||||
|
}
|
||||||
|
#ForgotPassword {
|
||||||
|
margin-top: 1em;
|
||||||
}
|
}
|
@ -355,6 +355,8 @@ class Security extends Controller {
|
|||||||
Requirements::css(THIRDPARTY_DIR . '/jquery/themes/smoothness/ui.all.css');
|
Requirements::css(THIRDPARTY_DIR . '/jquery/themes/smoothness/ui.all.css');
|
||||||
Requirements::css(THIRDPARTY_DIR . '/jquery/themes/smoothness/ui.tabs.css');
|
Requirements::css(THIRDPARTY_DIR . '/jquery/themes/smoothness/ui.tabs.css');
|
||||||
|
|
||||||
|
Requirements::css(SAPPHIRE_DIR . '/css/Security_login.css');
|
||||||
|
|
||||||
Requirements::javascript(SAPPHIRE_DIR . '/javascript/TabSet.js');
|
Requirements::javascript(SAPPHIRE_DIR . '/javascript/TabSet.js');
|
||||||
|
|
||||||
$content = '<div id="Form_EditForm">';
|
$content = '<div id="Form_EditForm">';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user