mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
ENHANCEMENT added complete form style and additional typography styles
This commit is contained in:
parent
988174dc2e
commit
7ff80fd5f4
39
css/form.css
39
css/form.css
@ -16,6 +16,11 @@ form {
|
|||||||
div.field {
|
div.field {
|
||||||
margin: 10px 0 15px;
|
margin: 10px 0 15px;
|
||||||
}
|
}
|
||||||
|
fieldset {
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
form label {
|
form label {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
@ -27,9 +32,10 @@ form label {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #888;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
form input.text,
|
form input.text,
|
||||||
form textarea,
|
form textarea,
|
||||||
form .textajaxuniquetext,
|
form .textajaxuniquetext, /* Not sure if this is used? */
|
||||||
form select {
|
form select {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
@ -38,6 +44,8 @@ form select {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border: 1px solid #dad9d9;
|
border: 1px solid #dad9d9;
|
||||||
}
|
}
|
||||||
|
.ie7 form select { width: 400px; }
|
||||||
|
|
||||||
form input.text:focus,
|
form input.text:focus,
|
||||||
form textarea:focus,
|
form textarea:focus,
|
||||||
form .textajaxuniquetext:focus,
|
form .textajaxuniquetext:focus,
|
||||||
@ -48,6 +56,9 @@ form input[disabled], form textarea[disabled] {
|
|||||||
background-color: #f7f7f7;
|
background-color: #f7f7f7;
|
||||||
border: 1px solid #dad9d9;
|
border: 1px solid #dad9d9;
|
||||||
}
|
}
|
||||||
|
textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Radio and Checkbox */
|
/* Radio and Checkbox */
|
||||||
@ -100,19 +111,31 @@ form .message {
|
|||||||
border: none;
|
border: none;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
float: left;
|
||||||
}
|
}
|
||||||
a.btn:hover, button, input[type="submit"]:hover, .Actions .action:hover {
|
a.btn:hover, button, input[type="submit"]:hover, .Actions .action:hover {
|
||||||
background: #d80000;
|
background: #C80000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
a.btn {
|
a.btn {
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
a.btn:after { /* creates arrow in button */
|
a.btn:after { /* creates arrow in button */
|
||||||
content: '\2192';
|
content: '\2192';
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
|
.ie7 input.action {
|
||||||
|
width: 0; /* IE table-cell margin fix */
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
input.action[class] { /* IE ignores [class] */
|
||||||
|
width: auto; /* cancel margin fix for other browsers */
|
||||||
|
}
|
||||||
|
|
||||||
|
.ie7 .Actions .action {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
.Actions:after {
|
.Actions:after {
|
||||||
color: #B94A48;
|
color: #B94A48;
|
||||||
content: "* Indicates a required field";
|
content: "* Indicates a required field";
|
||||||
@ -130,6 +153,12 @@ form .message {
|
|||||||
#Remember {
|
#Remember {
|
||||||
min-height: 20px;
|
min-height: 20px;
|
||||||
}
|
}
|
||||||
|
#ForgotPassword {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
#MemberLoginForm_LostPasswordForm .Actions:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* Search / Login */
|
/* Search / Login */
|
||||||
.header form .middleColumn {
|
.header form .middleColumn {
|
||||||
@ -140,8 +169,6 @@ form .message {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* USER DEFINED USER FORM MODULE STYLES
|
/* USER DEFINED USER FORM MODULE STYLES
|
||||||
----------------------------------------------- */
|
----------------------------------------------- */
|
||||||
|
|
||||||
@ -151,7 +178,7 @@ form .message {
|
|||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
form .date .middleColumn input {
|
form .date .middleColumn input {
|
||||||
background: transparent url(../images/icons/your_icon_here.png) no-repeat scroll 90px 5px;
|
/*background: transparent url(../images/icons/your_icon_here.png) no-repeat scroll 90px 5px;*/
|
||||||
width: 114px;
|
width: 114px;
|
||||||
}
|
}
|
||||||
.Actions input.resetformaction { /* Clear button */
|
.Actions input.resetformaction { /* Clear button */
|
||||||
|
@ -44,10 +44,10 @@ body {
|
|||||||
aside {
|
aside {
|
||||||
float: left;
|
float: left;
|
||||||
width: 23%;
|
width: 23%;
|
||||||
margin-top: 20px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
.no-sidebar aside {
|
.no-sidebar aside {
|
||||||
display:none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -219,26 +219,27 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Secondary navigation */
|
/* Secondary navigation */
|
||||||
.secondary h3 {
|
.main .secondary h3 {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
color: #b8b7b7;
|
color: #b8b7b7;
|
||||||
margin: 0 0 10px 0;
|
margin: 0 0 8px 0;
|
||||||
font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif;
|
font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
.secondary {
|
.main .secondary {
|
||||||
border-bottom: 1px solid #e5e5e5
|
border-bottom: 1px solid #e5e5e5
|
||||||
}
|
}
|
||||||
.secondary ul {
|
.main .secondary ul {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.secondary li {
|
.main .secondary li {
|
||||||
border-top: 1px solid #e5e5e5;
|
border-top: 1px solid #e5e5e5;
|
||||||
position: relative;
|
position: relative;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.secondary li .arrow {
|
.main .secondary li .arrow {
|
||||||
color: #b80000;
|
color: #b80000;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
display: block;
|
display: block;
|
||||||
@ -246,16 +247,16 @@ body {
|
|||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 2px;
|
left: 2px;
|
||||||
top: 5px;
|
top: 7px;
|
||||||
-moz-transition: 0.2s;
|
-moz-transition: 0.2s;
|
||||||
-webkit-transition: 0.2s;
|
-webkit-transition: 0.2s;
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
}
|
}
|
||||||
.secondary li:hover .arrow {
|
.main .secondary li:hover .arrow {
|
||||||
left: 6px
|
left: 6px
|
||||||
}
|
}
|
||||||
.secondary li a {
|
.main .secondary li a {
|
||||||
padding: 8px 0;
|
padding: 10px 0;
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -263,20 +264,24 @@ body {
|
|||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: #333;
|
color: #333;
|
||||||
line-height: 17px;
|
line-height: 17px;
|
||||||
|
border-bottom: none;
|
||||||
font-family: 'Lucida Sans', 'Lucida Grande', Arial, Helvetica, sans-serif;
|
font-family: 'Lucida Sans', 'Lucida Grande', Arial, Helvetica, sans-serif;
|
||||||
}
|
}
|
||||||
.secondary li .text {
|
.main .secondary li .text {
|
||||||
padding-left: 28px;
|
padding-left: 28px;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.secondary li.section,
|
.main .secondary li.section,
|
||||||
.secondary li.current {
|
.main .secondary li.current {
|
||||||
background-color: #f7f7f7
|
background-color: #f7f7f7
|
||||||
}
|
}
|
||||||
.secondary li.section a,
|
.main .secondary li.section a,
|
||||||
.secondary li.current a {
|
.main .secondary li.current a {
|
||||||
color: #000
|
color: #000
|
||||||
}
|
}
|
||||||
|
.main .secondary h3 {
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* MIXED */
|
/* MIXED */
|
||||||
@ -625,6 +630,7 @@ body h1 span.amp {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Based on HTML5 boilerplate print styles */
|
||||||
@media print {
|
@media print {
|
||||||
* {
|
* {
|
||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
@ -634,14 +640,27 @@ body h1 span.amp {
|
|||||||
filter: none !important;
|
filter: none !important;
|
||||||
-ms-filter: none !important;
|
-ms-filter: none !important;
|
||||||
}
|
}
|
||||||
.header,
|
|
||||||
.footer {
|
|
||||||
display: none
|
|
||||||
}
|
|
||||||
a,
|
a,
|
||||||
a:visited {
|
a:visited {
|
||||||
text-decoration: underline
|
text-decoration: underline
|
||||||
}
|
}
|
||||||
|
a[href]:after {
|
||||||
|
content: " (" attr(href) ")";
|
||||||
|
}
|
||||||
|
abbr[title]:after {
|
||||||
|
content: " (" attr(title) ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Don't show links for images, or javascript/internal links
|
||||||
|
*/
|
||||||
|
|
||||||
|
.ir a:after,
|
||||||
|
a[href^="javascript:"]:after,
|
||||||
|
a[href^="#"]:after {
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
display: table-header-group
|
display: table-header-group
|
||||||
}
|
}
|
||||||
@ -652,4 +671,29 @@ body h1 span.amp {
|
|||||||
img {
|
img {
|
||||||
max-width: 100% !important
|
max-width: 100% !important
|
||||||
}
|
}
|
||||||
|
pre,
|
||||||
|
blockquote {
|
||||||
|
border: 1px solid #999;
|
||||||
|
page-break-inside: avoid;
|
||||||
|
}
|
||||||
|
@page {
|
||||||
|
margin: 0.5cm;
|
||||||
|
}
|
||||||
|
p,
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
orphans: 3;
|
||||||
|
widows: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
page-break-after: avoid;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Simple theme custom print styles */
|
||||||
|
.header,
|
||||||
|
.footer {
|
||||||
|
display: none
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,3 +1,6 @@
|
|||||||
|
/* This reset is loosely derived from HTML5 boilerplate
|
||||||
|
for more information visit http://html5boilerplate.com/ */
|
||||||
|
|
||||||
html, body, div, span, object, iframe,
|
html, body, div, span, object, iframe,
|
||||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
|
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
|
||||||
|
@ -208,6 +208,11 @@ body {
|
|||||||
.typography .captionImage.right img {
|
.typography .captionImage.right img {
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
}
|
}
|
||||||
|
.typography .captionImage.right p {
|
||||||
|
margin-left: -10px;
|
||||||
|
text-align: left;
|
||||||
|
margin-left: -10px;
|
||||||
|
}
|
||||||
.typography .captionImage.leftAlone{
|
.typography .captionImage.leftAlone{
|
||||||
float:none;
|
float:none;
|
||||||
margin: 0 20px 20px 0px;
|
margin: 0 20px 20px 0px;
|
||||||
|
BIN
images/ajax-loader.gif
Normal file
BIN
images/ajax-loader.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 477 B |
@ -36,7 +36,10 @@ Change it, enhance it and most importantly enjoy it!
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% include Footer %>
|
<% include Footer %>
|
||||||
<% require javascript(http://code.jquery.com/jquery-1.7.2.js) %>
|
|
||||||
<% require javascript(themes/simple/javascript/script.js) %>
|
<% require javascript(framework/thirdparty/jquery/jquery.js) %>
|
||||||
|
<%-- Please move: Theme javascript (below) should be moved to mysite/code/page.php --%>
|
||||||
|
<script type="text/javascript" src="{$ThemeDir}/javascript/script.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user