2011-09-28 05:06:06 +02:00
|
|
|
/**
|
2011-09-30 00:59:44 +02:00
|
|
|
* Core styles for the basic GridField form field without any specific style.
|
2011-09-28 05:06:06 +02:00
|
|
|
*
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage scss
|
2011-12-06 01:56:24 +01:00
|
|
|
* @todo Add radial gradient to default delete button state
|
|
|
|
* @todo Create SASS mixin-function to simply swap the from/to, to to/from colours in grsdient mixins?
|
2011-09-28 05:06:06 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
@import "compass/css3";
|
2012-02-01 02:06:06 +01:00
|
|
|
@import "compass/css3/images";
|
|
|
|
@import "compass/css3/text-shadow";
|
|
|
|
@import "compass/css3/border-radius";
|
2011-09-28 05:06:06 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
$gf_colour_gradient_light: #B1C0C5;
|
|
|
|
$gf_colour_gradient_dark: #7F9198;
|
|
|
|
$gf_colour_base: #95a5ab;
|
|
|
|
$gf_colour_header_border: #819198;
|
2012-02-01 02:06:06 +01:00
|
|
|
$gf_colour_subheader: #BAC8CE;
|
|
|
|
$gf_colour_border: rgba(0,0,0,.1);
|
|
|
|
$gf_colour_zebra: #F0F4F7;
|
|
|
|
$gf_colour_font: #666;
|
|
|
|
$gf_colour_text_shadow: rgba(0,0,0,.3);
|
2011-12-06 01:56:24 +01:00
|
|
|
$gf_border_radius: 7px;
|
2011-09-28 05:06:06 +02:00
|
|
|
|
2012-02-29 01:46:10 +01:00
|
|
|
$gf_grid_y: 12px;
|
|
|
|
$gf_grid_x: 16px;
|
2012-02-01 02:06:06 +01:00
|
|
|
|
2012-01-09 01:46:06 +01:00
|
|
|
@mixin box-shadow-none {
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
.cms {
|
2012-02-23 15:17:39 +01:00
|
|
|
.ss-gridfield {
|
2012-02-07 20:56:40 +01:00
|
|
|
& > div {
|
|
|
|
margin-bottom: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[data-selectable] {
|
|
|
|
tr.ui-selected, tr.ui-selecting {
|
|
|
|
background: #FFFAD6 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2012-01-29 21:26:39 +01:00
|
|
|
}
|
2012-02-07 20:56:40 +01:00
|
|
|
|
2012-02-23 15:17:39 +01:00
|
|
|
table.ss-gridfield-table {
|
2012-02-09 17:17:39 +01:00
|
|
|
display: table;
|
2012-01-09 20:38:58 +01:00
|
|
|
box-shadow: none;
|
2011-12-06 01:56:24 +01:00
|
|
|
padding: 0;
|
|
|
|
border-collapse: separate;
|
|
|
|
border-bottom: 0 none;
|
2012-02-09 17:17:39 +01:00
|
|
|
width: 100%;
|
2011-09-28 05:06:06 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
thead {
|
|
|
|
color: darken($gf_colour_base, 50%);
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
background: #FFF;
|
|
|
|
td {
|
2012-01-09 17:16:07 +01:00
|
|
|
/* Emulate a link by default */
|
2011-12-06 01:56:24 +01:00
|
|
|
button {
|
2012-01-09 17:16:07 +01:00
|
|
|
border: none;
|
|
|
|
background: none;
|
2011-12-06 01:56:24 +01:00
|
|
|
margin: 0 0 0 2px;
|
|
|
|
padding: 0;
|
|
|
|
width: auto;
|
|
|
|
text-shadow: none;
|
2012-02-29 03:30:40 +01:00
|
|
|
&.ui-state-hover {
|
|
|
|
background:none;
|
|
|
|
border:none;
|
|
|
|
@include box-shadow-none;
|
|
|
|
}
|
|
|
|
span.ui-button-text {
|
|
|
|
text-indent:-9999em;
|
2012-02-29 04:38:53 +01:00
|
|
|
background: url(../images/icons/decline.png) no-repeat 0 2px;
|
|
|
|
padding:0;
|
|
|
|
width:20px;
|
|
|
|
height:20px;
|
2012-02-29 03:30:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
a.edit-link {
|
|
|
|
display:inline-block;
|
|
|
|
height:20px;
|
|
|
|
width:20px;
|
|
|
|
text-indent:-9999em;
|
2012-02-29 04:38:53 +01:00
|
|
|
background: url(../images/icons/document--pencil.png) no-repeat 0 1px;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-28 05:06:06 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
tfoot {
|
|
|
|
color: darken($gf_colour_base, 50%);
|
|
|
|
tr {
|
|
|
|
td {
|
|
|
|
background: $gf_colour_base;
|
|
|
|
padding: .7em;
|
2012-02-01 02:06:06 +01:00
|
|
|
border-bottom: 1px solid rgba(0,0,0,.1);
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
|
2012-02-22 04:25:11 +01:00
|
|
|
tr {
|
|
|
|
&.title {
|
|
|
|
@include border-top-radius($gf_border_radius);
|
2011-12-06 01:56:24 +01:00
|
|
|
th {
|
2012-02-22 04:25:11 +01:00
|
|
|
position: relative;
|
2011-12-06 01:56:24 +01:00
|
|
|
background: $gf_colour_gradient_dark;
|
2012-02-22 04:25:11 +01:00
|
|
|
border-top: 1px solid $gf_colour_border;
|
2012-02-22 05:16:20 +01:00
|
|
|
padding: 5px;
|
2012-02-22 04:25:11 +01:00
|
|
|
min-height: 40px;
|
|
|
|
@include background-image(linear-gradient($gf_colour_gradient_light, $gf_colour_gradient_dark));
|
|
|
|
@include border-top-radius($gf_border_radius);
|
|
|
|
@include single-text-shadow($gf_colour_text_shadow, 0px, -1px, 0);
|
2012-02-22 05:16:20 +01:00
|
|
|
h2{
|
|
|
|
padding: 0px;
|
2012-02-29 01:46:10 +01:00
|
|
|
font-size: $gf_grid_y*1.4;
|
2012-02-22 05:16:20 +01:00
|
|
|
color:#fff;
|
2012-02-29 01:46:10 +01:00
|
|
|
margin:3px $gf_grid_x/2 0;
|
|
|
|
display:inline-block;
|
2012-02-22 05:16:20 +01:00
|
|
|
}
|
2012-02-22 04:25:11 +01:00
|
|
|
.new{
|
2012-02-29 01:46:10 +01:00
|
|
|
font-size: $gf_grid_y*1.2;
|
2012-02-22 04:25:11 +01:00
|
|
|
border-color: $gf_colour_border;
|
2012-02-22 05:16:20 +01:00
|
|
|
float: right;
|
2012-02-22 04:25:11 +01:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
2012-02-22 04:25:11 +01:00
|
|
|
}
|
|
|
|
&.sortable-header {
|
|
|
|
background: $gf_colour_subheader;
|
2012-02-29 01:46:10 +01:00
|
|
|
th{
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background: #FFFAD6 !important;
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
&:first-child {
|
|
|
|
background: transparent;
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
&.ss-gridfield-even {
|
|
|
|
background: $gf_colour_zebra;
|
2011-09-28 05:06:06 +02:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
&.ss-gridfield-last {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
2012-02-01 02:06:06 +01:00
|
|
|
&.even {
|
2012-02-06 22:39:49 +01:00
|
|
|
background: $gf_colour_zebra;
|
2012-02-01 02:06:06 +01:00
|
|
|
}
|
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
th {
|
|
|
|
font-weight: bold;
|
2012-02-29 01:46:10 +01:00
|
|
|
font-size: $gf_grid_y;
|
2011-12-06 01:56:24 +01:00
|
|
|
color: #FFF;
|
2012-02-01 02:06:06 +01:00
|
|
|
padding: 5px;
|
|
|
|
border-right: 1px solid $gf_colour_border;
|
|
|
|
&.main:first-child{
|
2012-02-22 04:25:11 +01:00
|
|
|
//@include border-top-left-radius($gf_border_radius);
|
2012-02-01 02:06:06 +01:00
|
|
|
}
|
|
|
|
&.main:last-child{
|
2012-02-22 04:25:11 +01:00
|
|
|
//@include border-top-right-radius($gf_border_radius);
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
div {
|
|
|
|
&.fieldgroup,&.fieldgroup-field {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
&.fieldgroup {
|
2012-01-09 20:38:58 +01:00
|
|
|
min-width: 200px;
|
2012-02-01 02:06:06 +01:00
|
|
|
padding-right:0;
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.extra,&.action {
|
|
|
|
padding: 0;
|
|
|
|
cursor: default;
|
|
|
|
button,button:hover {
|
|
|
|
&.ss-ui-button {
|
|
|
|
margin-left: .9em;
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-01 02:06:06 +01:00
|
|
|
&.main{
|
|
|
|
border-top: 1px solid $gf_colour_border;
|
|
|
|
color:#fff;
|
2012-02-22 04:25:11 +01:00
|
|
|
background: darken($gf_colour_subheader,10%);
|
|
|
|
border-bottom: 1px solid $gf_colour_border;
|
2012-02-01 02:06:06 +01:00
|
|
|
span{
|
|
|
|
@include single-text-shadow($gf_colour_text_shadow, 0px, -1px, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
&.extra {
|
2012-02-01 02:06:06 +01:00
|
|
|
background: $gf_colour_subheader;
|
|
|
|
padding: 5px;
|
|
|
|
border-top: $gf_colour_text_shadow;
|
2011-12-06 01:56:24 +01:00
|
|
|
span {
|
|
|
|
width: auto;
|
|
|
|
display: inline;
|
|
|
|
position: static;
|
|
|
|
}
|
2012-02-01 02:06:06 +01:00
|
|
|
button.ss-ui-button {
|
|
|
|
padding: .3em;
|
|
|
|
line-height: 1;
|
|
|
|
@include box-shadow-none;
|
|
|
|
position: relative;
|
|
|
|
border-bottom-width: 0;
|
|
|
|
@include border-radius(2px, 2px);
|
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
&.action {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
&.first {
|
|
|
|
@include border-top-left-radius($gf_border_radius);
|
|
|
|
}
|
|
|
|
&.last {
|
|
|
|
@include border-top-right-radius($gf_border_radius);
|
|
|
|
}
|
2012-02-01 02:06:06 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
button {
|
|
|
|
&:hover {
|
2012-02-01 02:06:06 +01:00
|
|
|
color: #ccc !important; /* Not sure why IE think it needs this */
|
|
|
|
}
|
|
|
|
&.ss-gridfield-sort:hover {
|
|
|
|
color: #fff !important;
|
|
|
|
@include box-shadow-none;
|
|
|
|
}
|
|
|
|
&.ss-gridfield-sort {
|
2012-02-29 01:46:10 +01:00
|
|
|
background: transparent url(../images/arrows.png) no-repeat right 6px;
|
2012-02-01 02:06:06 +01:00
|
|
|
border:none;
|
|
|
|
width:100%;
|
|
|
|
text-align: left;
|
|
|
|
padding: 4px 0;
|
|
|
|
@include single-text-shadow($gf_colour_text_shadow, 0px, -1px, 0);
|
|
|
|
color: #fff;
|
2012-02-04 11:32:24 +01:00
|
|
|
@include border-radius(0);
|
2012-02-29 01:46:10 +01:00
|
|
|
&:hover {
|
|
|
|
background-position: right -34px;
|
|
|
|
}
|
2012-02-29 04:42:57 +01:00
|
|
|
&.ss-gridfield-sorted-desc {
|
|
|
|
background-position: right -72px;
|
|
|
|
}
|
|
|
|
&.ss-gridfield-sorted-asc {
|
2012-02-29 01:46:10 +01:00
|
|
|
background-position: right -116px;
|
|
|
|
}
|
2012-02-29 04:42:57 +01:00
|
|
|
}
|
|
|
|
&.ss-gridfield-button-filter{
|
|
|
|
background: transparent url(../images/icons/filter-icons.png) no-repeat right 6px;
|
2012-02-01 02:06:06 +01:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
input {
|
|
|
|
&.ss-gridfield-sort {
|
|
|
|
padding: 2px;
|
2012-01-09 01:46:06 +01:00
|
|
|
&:focus {
|
|
|
|
@include box-shadow-none;
|
|
|
|
}
|
2012-02-29 01:46:10 +01:00
|
|
|
|
2011-12-06 01:56:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
border-right: 1px solid $gf_colour_border;
|
2012-02-29 01:55:48 +01:00
|
|
|
padding: $gf_grid_x/2.5 $gf_grid_y;
|
2012-02-01 02:06:06 +01:00
|
|
|
color: $gf_colour_font;
|
2011-12-06 01:56:24 +01:00
|
|
|
&.bottom-all {
|
|
|
|
@include border-bottom-radius($gf_border_radius);
|
2012-02-01 02:06:06 +01:00
|
|
|
@include background-image(linear-gradient($gf_colour_gradient_light, $gf_colour_gradient_dark));
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
|
|
|
}
|
2012-01-10 00:58:48 +01:00
|
|
|
&.last td {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
2012-02-01 02:06:06 +01:00
|
|
|
td:first-child, th:first-child{
|
|
|
|
border-left: 1px solid $gf_colour_border;
|
|
|
|
}
|
2011-09-28 05:06:06 +02:00
|
|
|
}
|
|
|
|
}
|