initial commit of starter install drupal 7
@@ -0,0 +1,137 @@
|
||||
/* General styling */
|
||||
body.adminimal-theme div.admin-panel.admin {
|
||||
background: url("images/config/gears-medium.png") no-repeat scroll 100% 50% #F8F8F8;
|
||||
padding: 10px 100px 10px 10px;
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin h3 {
|
||||
background: url("images/config/gears-small.png") no-repeat scroll 0 0 transparent;
|
||||
line-height: 26px;
|
||||
text-indent: 32px;
|
||||
}
|
||||
|
||||
/* People menu */
|
||||
body.adminimal-theme div.admin-panel.admin.people {
|
||||
background-image: url("images/config/people-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.people h3 {
|
||||
background-image: url("images/config/people-small.png");
|
||||
}
|
||||
|
||||
/* Content menu */
|
||||
body.adminimal-theme div.admin-panel.admin.content {
|
||||
background-image: url("images/config/pen-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.content h3 {
|
||||
background-image: url("images/config/pen-small.png");
|
||||
}
|
||||
|
||||
/* Date menu */
|
||||
body.adminimal-theme div.admin-panel.admin.date {
|
||||
background-image: url("images/config/calendar-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.date h3 {
|
||||
background-image: url("images/config/calendar-small.png");
|
||||
}
|
||||
|
||||
/* Media menu */
|
||||
body.adminimal-theme div.admin-panel.admin.media {
|
||||
background-image: url("images/config/media-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.media h3 {
|
||||
background-image: url("images/config/media-small.png");
|
||||
}
|
||||
|
||||
/* Search menu */
|
||||
body.adminimal-theme div.admin-panel.admin.search {
|
||||
background-image: url("images/config/search-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.search h3 {
|
||||
background-image: url("images/config/search-small.png");
|
||||
}
|
||||
|
||||
/* Regional menu */
|
||||
body.adminimal-theme div.admin-panel.admin.regional {
|
||||
background-image: url("images/config/regional-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.regional h3 {
|
||||
background-image: url("images/config/regional-small.png");
|
||||
}
|
||||
|
||||
/* Administration menu */
|
||||
body.adminimal-theme div.admin-panel.admin.administration {
|
||||
background-image: url("images/config/gears-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.administration h3 {
|
||||
background-image: url("images/config/gears-small.png");
|
||||
}
|
||||
|
||||
/* System menu */
|
||||
body.adminimal-theme div.admin-panel.admin.system {
|
||||
background-image: url("images/config/system-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.system h3 {
|
||||
background-image: url("images/config/system-small.png");
|
||||
}
|
||||
|
||||
/* User Interface menu */
|
||||
body.adminimal-theme div.admin-panel.admin.user-interface {
|
||||
background-image: url("images/config/user-interface-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.user-interface h3 {
|
||||
background-image: url("images/config/user-interface-small.png");
|
||||
}
|
||||
|
||||
/* Development menu */
|
||||
body.adminimal-theme div.admin-panel.admin.development {
|
||||
background-image: url("images/config/development-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.development h3 {
|
||||
background-image: url("images/config/development-small.png");
|
||||
}
|
||||
|
||||
/* Services menu */
|
||||
body.adminimal-theme div.admin-panel.admin.services {
|
||||
background-image: url("images/config/services-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.services h3 {
|
||||
background-image: url("images/config/services-small.png");
|
||||
}
|
||||
|
||||
/* Organic Groups */
|
||||
body.adminimal-theme div.admin-panel.admin.group {
|
||||
background-image: url("images/config/organic-groups-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.group h3 {
|
||||
background-image: url("images/config/organic-groups-small.png");
|
||||
}
|
||||
|
||||
/* Messaging */
|
||||
body.adminimal-theme div.admin-panel.admin.messaging {
|
||||
background-image: url("images/config/messaging-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.messaging h3 {
|
||||
background-image: url("images/config/messaging-small.png");
|
||||
}
|
||||
|
||||
/* Workflow */
|
||||
body.adminimal-theme div.admin-panel.admin.workflow {
|
||||
background-image: url("images/config/workflow-medium.png");
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin-panel.admin.workflow h3 {
|
||||
background-image: url("images/config/workflow-small.png");
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
|
||||
/* IE7 renders legends in nested fieldsets without a width. */
|
||||
fieldset legend {
|
||||
height: 1%;
|
||||
}
|
||||
|
||||
/* IE renders absolute positioned legend where fieldset content starts. */
|
||||
fieldset .fieldset-legend {
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
/* IE renders monospace font too big. */
|
||||
code,
|
||||
pre,
|
||||
kbd {
|
||||
font-size: 1em;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
|
||||
ul.menu li,
|
||||
ul.menu li a,
|
||||
ul.links li,
|
||||
ul.links li a,
|
||||
.action-links,
|
||||
#page {
|
||||
height: 1%;
|
||||
}
|
||||
#block-system-main ul.admin-list li a {
|
||||
height: 1px;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
#block-system-main ul.admin-list li div.description a {
|
||||
display: inline;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
|
||||
ul.tabs.primary {
|
||||
padding: 0;
|
||||
}
|
||||
ul.primary li,
|
||||
ul.primary li a,
|
||||
ul.primary li.active a {
|
||||
float: none !important;
|
||||
display: inline;
|
||||
}
|
||||
ul.primary li,
|
||||
ul.primary li a,
|
||||
ul.primary li a.active,
|
||||
ul.primary li a:active,
|
||||
ul.primary li a:visited,
|
||||
ul.primary li a:hover,
|
||||
ul.primary li.active a {
|
||||
zoom: 1;
|
||||
position: relative;
|
||||
}
|
||||
ul.admin-list li {
|
||||
position: static;
|
||||
}
|
||||
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 296 B |
|
After Width: | Height: | Size: 88 B |
|
After Width: | Height: | Size: 95 B |
|
After Width: | Height: | Size: 118 B |
|
After Width: | Height: | Size: 115 B |
|
After Width: | Height: | Size: 322 B |
|
After Width: | Height: | Size: 786 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="shape" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="21px" height="21px" viewBox="0 0 21 21" enable-background="new 0 0 21 21" xml:space="preserve">
|
||||
<g id="shape">
|
||||
<g>
|
||||
<polygon fill="#C70000" points="6.027,0 0,6.027 0,15.022 6.027,21 14.99,21 21,14.99 21,5.996 14.99,0 "/>
|
||||
<path fill="#C70000" d="M15.715,7.206l-2.118-2.118l-3.177,3.177L7.242,5.088L5.124,7.206l3.177,3.177l-3.177,3.177l2.118,2.118
|
||||
l3.177-3.177l3.177,3.177l2.118-2.118l-3.177-3.177L15.715,7.206z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#C70000" points="6.027,0 0,6.027 0,15.022 6.027,21 14.99,21 21,14.99 21,5.996 14.99,0 "/>
|
||||
<path fill="#FFFFFF" d="M15.715,7.206l-2.118-2.118l-3.177,3.177L7.242,5.088L5.124,7.206l3.177,3.177l-3.177,3.177l2.118,2.118
|
||||
l3.177-3.177l3.177,3.177l2.118-2.118l-3.177-3.177L15.715,7.206z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 350 B |
|
After Width: | Height: | Size: 76 B |
|
After Width: | Height: | Size: 82 B |
|
After Width: | Height: | Size: 225 B |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="50px" height="150px" viewBox="0 0 50 150" enable-background="new 0 0 50 150" xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M10.496,59.617c0-0.552-0.195-1.023-0.586-1.414s-0.862-0.586-1.414-0.586s-1.023,0.195-1.414,0.586
|
||||
s-0.586,0.862-0.586,1.414s0.195,1.023,0.586,1.414s0.862,0.586,1.414,0.586s1.023-0.195,1.414-0.586S10.496,60.169,10.496,59.617z
|
||||
M16.496,63.617c0-0.271-0.099-0.505-0.297-0.703s-0.432-0.297-0.703-0.297s-0.505,0.099-0.703,0.297s-0.297,0.432-0.297,0.703
|
||||
c0,0.276,0.098,0.512,0.293,0.707s0.431,0.293,0.707,0.293s0.512-0.098,0.707-0.293S16.496,63.893,16.496,63.617z M16.496,55.617
|
||||
c0-0.271-0.099-0.505-0.297-0.703s-0.432-0.297-0.703-0.297s-0.505,0.099-0.703,0.297s-0.297,0.432-0.297,0.703
|
||||
c0,0.276,0.098,0.512,0.293,0.707s0.431,0.293,0.707,0.293s0.512-0.098,0.707-0.293S16.496,55.893,16.496,55.617z M13.496,58.906
|
||||
v1.445c0,0.052-0.018,0.103-0.055,0.152s-0.078,0.077-0.125,0.082l-1.211,0.188c-0.057,0.182-0.141,0.38-0.25,0.594
|
||||
c0.177,0.25,0.411,0.549,0.703,0.898c0.036,0.052,0.055,0.104,0.055,0.156c0,0.063-0.018,0.112-0.055,0.148
|
||||
c-0.12,0.156-0.335,0.389-0.645,0.699s-0.514,0.465-0.613,0.465c-0.057,0-0.112-0.018-0.164-0.055l-0.898-0.703
|
||||
c-0.193,0.099-0.393,0.18-0.602,0.242c-0.057,0.563-0.117,0.966-0.18,1.211c-0.036,0.125-0.115,0.188-0.234,0.188H7.769
|
||||
c-0.057,0-0.109-0.02-0.156-0.059s-0.073-0.085-0.078-0.137l-0.18-1.195c-0.177-0.052-0.372-0.133-0.586-0.242L5.848,63.68
|
||||
c-0.036,0.036-0.089,0.055-0.156,0.055c-0.057,0-0.112-0.021-0.164-0.063c-0.75-0.693-1.125-1.109-1.125-1.25
|
||||
c0-0.047,0.018-0.096,0.055-0.148c0.052-0.073,0.159-0.211,0.32-0.414s0.284-0.362,0.367-0.477c-0.12-0.229-0.211-0.443-0.273-0.641
|
||||
l-1.188-0.188c-0.052-0.005-0.096-0.03-0.133-0.074s-0.055-0.095-0.055-0.152v-1.445c0-0.052,0.018-0.103,0.055-0.152
|
||||
s0.078-0.077,0.125-0.082l1.211-0.188c0.057-0.182,0.141-0.38,0.25-0.594c-0.177-0.25-0.411-0.549-0.703-0.898
|
||||
c-0.036-0.057-0.055-0.109-0.055-0.156c0-0.063,0.018-0.115,0.055-0.156c0.115-0.156,0.328-0.388,0.641-0.695S5.592,55.5,5.691,55.5
|
||||
c0.057,0,0.112,0.018,0.164,0.055l0.898,0.703c0.177-0.094,0.378-0.177,0.602-0.25c0.057-0.563,0.117-0.964,0.18-1.203
|
||||
c0.036-0.125,0.115-0.188,0.234-0.188h1.453c0.057,0,0.109,0.02,0.156,0.059s0.073,0.085,0.078,0.137l0.18,1.195
|
||||
c0.177,0.052,0.372,0.133,0.586,0.242l0.922-0.695c0.042-0.036,0.094-0.055,0.156-0.055c0.057,0,0.112,0.021,0.164,0.063
|
||||
c0.75,0.693,1.125,1.109,1.125,1.25c0,0.047-0.018,0.096-0.055,0.148c-0.063,0.083-0.172,0.224-0.328,0.422
|
||||
s-0.273,0.354-0.352,0.469c0.12,0.25,0.208,0.464,0.266,0.641l1.188,0.18c0.052,0.01,0.096,0.038,0.133,0.082
|
||||
S13.496,58.849,13.496,58.906z M18.496,63.07v1.094c0,0.083-0.388,0.164-1.164,0.242c-0.063,0.141-0.141,0.276-0.234,0.406
|
||||
c0.266,0.589,0.398,0.948,0.398,1.078c0,0.021-0.01,0.039-0.031,0.055c-0.635,0.37-0.958,0.555-0.969,0.555
|
||||
c-0.042,0-0.161-0.122-0.359-0.367s-0.333-0.422-0.406-0.531c-0.104,0.01-0.182,0.016-0.234,0.016s-0.13-0.005-0.234-0.016
|
||||
c-0.073,0.109-0.208,0.286-0.406,0.531S14.538,66.5,14.496,66.5c-0.01,0-0.333-0.185-0.969-0.555
|
||||
c-0.021-0.016-0.031-0.034-0.031-0.055c0-0.13,0.133-0.49,0.398-1.078c-0.094-0.13-0.172-0.266-0.234-0.406
|
||||
c-0.776-0.078-1.164-0.159-1.164-0.242V63.07c0-0.083,0.388-0.164,1.164-0.242c0.068-0.151,0.146-0.286,0.234-0.406
|
||||
c-0.266-0.589-0.398-0.948-0.398-1.078c0-0.021,0.01-0.039,0.031-0.055c0.021-0.01,0.112-0.063,0.273-0.156s0.315-0.182,0.461-0.266
|
||||
s0.224-0.125,0.234-0.125c0.042,0,0.161,0.121,0.359,0.363s0.333,0.418,0.406,0.527c0.104-0.01,0.182-0.016,0.234-0.016
|
||||
s0.13,0.005,0.234,0.016c0.266-0.37,0.505-0.661,0.719-0.875l0.047-0.016c0.021,0,0.344,0.182,0.969,0.547
|
||||
c0.021,0.016,0.031,0.034,0.031,0.055c0,0.13-0.133,0.49-0.398,1.078c0.089,0.12,0.167,0.255,0.234,0.406
|
||||
C18.108,62.906,18.496,62.987,18.496,63.07z M18.496,55.07v1.094c0,0.083-0.388,0.164-1.164,0.242
|
||||
c-0.063,0.141-0.141,0.276-0.234,0.406c0.266,0.589,0.398,0.948,0.398,1.078c0,0.021-0.01,0.039-0.031,0.055
|
||||
c-0.635,0.37-0.958,0.555-0.969,0.555c-0.042,0-0.161-0.122-0.359-0.367s-0.333-0.422-0.406-0.531
|
||||
c-0.104,0.01-0.182,0.016-0.234,0.016s-0.13-0.005-0.234-0.016c-0.073,0.109-0.208,0.286-0.406,0.531S14.538,58.5,14.496,58.5
|
||||
c-0.01,0-0.333-0.185-0.969-0.555c-0.021-0.016-0.031-0.034-0.031-0.055c0-0.13,0.133-0.49,0.398-1.078
|
||||
c-0.094-0.13-0.172-0.266-0.234-0.406c-0.776-0.078-1.164-0.159-1.164-0.242V55.07c0-0.083,0.388-0.164,1.164-0.242
|
||||
c0.068-0.151,0.146-0.286,0.234-0.406c-0.266-0.589-0.398-0.948-0.398-1.078c0-0.021,0.01-0.039,0.031-0.055
|
||||
c0.021-0.01,0.112-0.063,0.273-0.156s0.315-0.182,0.461-0.266s0.224-0.125,0.234-0.125c0.042,0,0.161,0.121,0.359,0.363
|
||||
s0.333,0.418,0.406,0.527c0.104-0.01,0.182-0.016,0.234-0.016s0.13,0.005,0.234,0.016c0.266-0.37,0.505-0.661,0.719-0.875
|
||||
l0.047-0.016c0.021,0,0.344,0.182,0.969,0.547c0.021,0.016,0.031,0.034,0.031,0.055c0,0.13-0.133,0.49-0.398,1.078
|
||||
c0.089,0.12,0.167,0.255,0.234,0.406C18.108,54.906,18.496,54.987,18.496,55.07z"/>
|
||||
<path fill="#FFFFFF" d="M17.44,4.764c-0.159-0.16-0.417-0.16-0.575,0l-6.057,6.029c-0.159,0.161-0.418,0.161-0.575,0L7.578,8.09
|
||||
C7.5,8.01,7.397,7.971,7.293,7.97C7.189,7.97,7.083,8.009,7.003,8.09L5.83,9.145c-0.078,0.08-0.12,0.18-0.12,0.285
|
||||
c0,0.105,0.042,0.215,0.121,0.295l2.676,2.808c0.158,0.16,0.418,0.42,0.575,0.58l1.151,1.16c0.158,0.159,0.417,0.159,0.575,0
|
||||
l7.783-7.769c0.159-0.159,0.159-0.421,0-0.58L17.44,4.764z"/>
|
||||
<path fill="#FFFFFF" d="M16.402,105.733c0.149,0.149,0.149,0.393,0,0.542l-2.987,2.984c-0.149,0.148-0.149,0.393,0,0.543
|
||||
l2.986,2.985c0.149,0.149,0.149,0.393,0,0.543l-1.088,1.084c-0.149,0.148-0.394,0.148-0.544,0l-2.985-2.985
|
||||
c-0.149-0.149-0.394-0.149-0.543,0l-2.987,2.983c-0.149,0.149-0.394,0.149-0.543,0l-1.086-1.085c-0.149-0.149-0.149-0.393,0-0.543
|
||||
l2.988-2.984c0.149-0.148,0.149-0.393,0-0.543l-2.986-2.986c-0.149-0.149-0.149-0.394,0-0.543l1.087-1.084
|
||||
c0.15-0.148,0.394-0.148,0.544,0l2.984,2.984c0.149,0.149,0.394,0.149,0.543,0l2.987-2.983c0.148-0.148,0.393-0.148,0.543,0
|
||||
L16.402,105.733z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="17px" height="28px" viewBox="0 0 17 28" enable-background="new 0 0 17 28" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#606060" d="M12,13.504l-3.5,3.5l-3.5-3.5v-2.338l3.5,3.5l3.5-3.5V13.504z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 711 B |
|
After Width: | Height: | Size: 984 B |
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
|
||||
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
|
||||
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
|
||||
]>
|
||||
<svg version="1.0" id="shape" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="21px" height="21px" viewBox="0 0 21 21" enable-background="new 0 0 21 21" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#1A7000" d="M10.512,0.047c1.43,0,2.783,0.275,4.061,0.826s2.385,1.295,3.322,2.232s1.682,2.045,2.232,3.322
|
||||
s0.826,2.631,0.826,4.061c0,1.453-0.275,2.807-0.826,4.061s-1.295,2.35-2.232,3.287s-2.045,1.676-3.322,2.215
|
||||
s-2.631,0.809-4.061,0.809c-1.453,0-2.807-0.27-4.061-0.809s-2.35-1.277-3.287-2.215s-1.676-2.033-2.215-3.287
|
||||
s-0.809-2.607-0.809-4.061c0-1.43,0.27-2.783,0.809-4.061s1.277-2.385,2.215-3.322s2.033-1.682,3.287-2.232
|
||||
S9.059,0.047,10.512,0.047z M15.996,7.324c0.117-0.141,0.158-0.293,0.123-0.457s-0.123-0.305-0.264-0.422l-0.949-0.633
|
||||
c-0.328-0.164-0.598-0.117-0.809,0.141l-4.605,6.855l-2.145-2.18c-0.258-0.164-0.527-0.164-0.809,0l-0.844,0.879
|
||||
c-0.117,0.117-0.176,0.246-0.176,0.387s0.059,0.27,0.176,0.387L9,15.586c0.117,0.07,0.234,0.141,0.352,0.211
|
||||
s0.234,0.105,0.352,0.105c0.328,0,0.574-0.152,0.738-0.457L15.996,7.324z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 261 B |
|
After Width: | Height: | Size: 178 B |
|
After Width: | Height: | Size: 105 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 212 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 178 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" [
|
||||
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
|
||||
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
|
||||
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
|
||||
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
|
||||
]>
|
||||
<svg version="1.0" id="shape" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
||||
x="0px" y="0px" width="21px" height="21px" viewBox="0 0 21 21" enable-background="new 0 0 21 21" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#FF9421" d="M20.531,16.324c0.234,0.422,0.369,0.82,0.404,1.195s-0.035,0.703-0.211,0.984s-0.434,0.504-0.773,0.668
|
||||
s-0.756,0.246-1.248,0.246H2.391c-1.031,0-1.717-0.311-2.057-0.932s-0.264-1.342,0.229-2.162L8.719,2.121
|
||||
c0.492-0.867,1.09-1.301,1.793-1.301s1.324,0.434,1.863,1.301L20.531,16.324z M9.422,6.164C9.281,6.305,9.176,6.48,9.105,6.691
|
||||
S9,7.113,9,7.324c0,0.094,0.035,0.328,0.105,0.703s0.146,0.826,0.229,1.354s0.17,1.102,0.264,1.723s0.164,1.213,0.211,1.775h1.406
|
||||
c0.07-0.563,0.152-1.154,0.246-1.775s0.188-1.195,0.281-1.723s0.176-0.979,0.246-1.354s0.105-0.609,0.105-0.703
|
||||
c0-0.211-0.035-0.422-0.105-0.633s-0.176-0.387-0.316-0.527c-0.328-0.328-0.715-0.492-1.16-0.492
|
||||
C10.043,5.672,9.68,5.836,9.422,6.164z M11.602,16.465c0.328-0.258,0.492-0.621,0.492-1.09s-0.164-0.855-0.492-1.16
|
||||
c-0.141-0.141-0.305-0.258-0.492-0.352s-0.387-0.141-0.598-0.141c-0.398,0-0.762,0.164-1.09,0.492C9.141,14.543,9,14.93,9,15.375
|
||||
s0.141,0.809,0.422,1.09c0.141,0.117,0.311,0.217,0.51,0.299s0.393,0.123,0.58,0.123c0.211,0,0.41-0.041,0.598-0.123
|
||||
S11.461,16.582,11.602,16.465z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="29px" height="29px" viewBox="0 0 29 29" enable-background="new 0 0 29 29" xml:space="preserve">
|
||||
<circle fill="none" stroke="#333333" stroke-width="2" cx="14.704" cy="14.885" r="13.033"/>
|
||||
<g>
|
||||
<line fill="none" stroke="#333333" x1="9.307" y1="9.279" x2="20.572" y2="20.491"/>
|
||||
<line fill="none" stroke="#333333" x1="20.311" y1="9.472" x2="9.099" y2="20.738"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 874 B |
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="29px" height="29px" viewBox="0 0 29 29" enable-background="new 0 0 29 29" xml:space="preserve">
|
||||
<circle fill="none" stroke="#777777" stroke-width="2" cx="14.704" cy="14.885" r="13.033"/>
|
||||
<g>
|
||||
<line fill="none" stroke="#777777" x1="9.307" y1="9.279" x2="20.572" y2="20.491"/>
|
||||
<line fill="none" stroke="#777777" x1="20.311" y1="9.472" x2="9.099" y2="20.738"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 874 B |
@@ -0,0 +1,463 @@
|
||||
/*! jQuery UI - v1.9.1 - 2012-11-08
|
||||
* http://jqueryui.com
|
||||
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
|
||||
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Open%20Sans%2C%20sans-serif&fwDefault=normal&fsDefault=12px&cornerRadius=0px&bgColorHeader=333&bgTextureHeader=01_flat.png&bgImgOpacityHeader=100&borderColorHeader=333&fcHeader=fff&iconColorHeader=fff&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=ccccc&fcContent=333&iconColorContent=333&bgColorDefault=ddd&bgTextureDefault=01_flat.png&bgImgOpacityDefault=75&borderColorDefault=ddd&fcDefault=555555&iconColorDefault=888888&bgColorHover=333&bgTextureHover=01_flat.png&bgImgOpacityHover=100&borderColorHover=333&fcHover=fff&iconColorHover=fff&bgColorActive=0074bd&bgTextureActive=01_flat.png&bgImgOpacityActive=65&borderColorActive=0074bd&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffce5&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=100&borderColorHighlight=fffce5&fcHighlight=000&iconColorHighlight=000&bgColorError=990000&bgTextureError=01_flat.png&bgImgOpacityError=95&borderColorError=990000&fcError=fff&iconColorError=fff&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
||||
* Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
.ui-helper-hidden { display: none; }
|
||||
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
||||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
||||
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
|
||||
.ui-helper-clearfix:after { clear: both; }
|
||||
.ui-helper-clearfix { zoom: 1; }
|
||||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
||||
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-disabled { cursor: default !important; }
|
||||
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; }
|
||||
.ui-resizable { position: relative;}
|
||||
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
|
||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
||||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
||||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
||||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
||||
.ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
|
||||
.ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
|
||||
.ui-accordion .ui-accordion-noicons { padding-left: .7em; }
|
||||
.ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
|
||||
.ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
||||
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }
|
||||
.ui-autocomplete {
|
||||
position: absolute;
|
||||
top: 0; /* #8656 */
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* workarounds */
|
||||
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
||||
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
|
||||
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
|
||||
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
|
||||
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
|
||||
.ui-button-icons-only { width: 3.4em; }
|
||||
button.ui-button-icons-only { width: 3.7em; }
|
||||
|
||||
/*button text element */
|
||||
.ui-button .ui-button-text { display: block; line-height: 1.4; }
|
||||
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
|
||||
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
|
||||
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
|
||||
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
|
||||
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
|
||||
/* no icon support for input elements, provide padding by default */
|
||||
input.ui-button { padding: .4em 1em; }
|
||||
|
||||
/*button icon element(s) */
|
||||
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
|
||||
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
|
||||
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
|
||||
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
||||
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
||||
|
||||
/*button sets*/
|
||||
.ui-buttonset { margin-right: 7px; }
|
||||
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
|
||||
|
||||
/* workarounds */
|
||||
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
||||
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
|
||||
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
||||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
||||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
||||
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
||||
.ui-datepicker .ui-datepicker-next { right:2px; }
|
||||
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
||||
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
||||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
|
||||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
||||
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
||||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
||||
.ui-datepicker select.ui-datepicker-month,
|
||||
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
||||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
||||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
||||
.ui-datepicker td { border: 0; padding: 1px; }
|
||||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
||||
|
||||
/* with multiple calendars */
|
||||
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
||||
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
||||
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
||||
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
||||
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
||||
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
||||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
||||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
||||
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
||||
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
|
||||
|
||||
/* RTL support */
|
||||
.ui-datepicker-rtl { direction: rtl; }
|
||||
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
||||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
||||
|
||||
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
||||
.ui-datepicker-cover {
|
||||
position: absolute; /*must have*/
|
||||
z-index: -1; /*must have*/
|
||||
filter: mask(); /*must have*/
|
||||
top: -4px; /*must have*/
|
||||
left: -4px; /*must have*/
|
||||
width: 200px; /*must have*/
|
||||
height: 200px; /*must have*/
|
||||
}.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
|
||||
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
|
||||
body.adminimal-theme .ui-dialog .ui-dialog-title { float: left; font-family: inherit; font-size: 27px; font-weight: 100; line-height: 1.2em; margin: 10px 6px; }
|
||||
body.adminimal-theme .ui-dialog .ui-dialog-titlebar-close { background: #B73939; height: 22px; margin: 0; padding: 0; position: absolute; right: 8px; top: 0; width: 45px; }
|
||||
body.adminimal-theme .ui-dialog .ui-dialog-titlebar-close:hover { background: #e55454; }
|
||||
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
||||
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
||||
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
||||
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
||||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
||||
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
||||
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
||||
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
||||
.ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
|
||||
.ui-menu .ui-menu { margin-top: -3px; position: absolute; }
|
||||
.ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
|
||||
.ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
|
||||
.ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
|
||||
.ui-menu .ui-menu-item a.ui-state-focus,
|
||||
.ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }
|
||||
|
||||
.ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
|
||||
.ui-menu .ui-state-disabled a { cursor: default; }
|
||||
|
||||
/* icon support */
|
||||
.ui-menu-icons { position: relative; }
|
||||
.ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }
|
||||
|
||||
/* left-aligned */
|
||||
.ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }
|
||||
|
||||
/* right-aligned */
|
||||
.ui-menu .ui-menu-icon { position: static; float: right; }
|
||||
.ui-progressbar { height:2em; text-align: left; overflow: hidden; }
|
||||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }.ui-slider { position: relative; text-align: left; }
|
||||
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
||||
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
|
||||
|
||||
.ui-slider-horizontal { height: .8em; }
|
||||
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
||||
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
||||
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
||||
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
||||
|
||||
.ui-slider-vertical { width: .8em; height: 100px; }
|
||||
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
||||
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
||||
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
||||
.ui-slider-vertical .ui-slider-range-max { top: 0; }.ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
|
||||
.ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
|
||||
.ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
|
||||
.ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
|
||||
.ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
|
||||
.ui-spinner-up { top: 0; }
|
||||
.ui-spinner-down { bottom: 0; }
|
||||
|
||||
/* TR overrides */
|
||||
.ui-spinner .ui-icon-triangle-1-s {
|
||||
/* need to fix icons sprite */
|
||||
background-position:-65px -16px;
|
||||
}
|
||||
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
||||
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
|
||||
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
|
||||
body.adminimal-theme .ui-tabs .ui-tabs-nav li { top: 0; margin: 0; }
|
||||
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
|
||||
.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
||||
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
||||
.ui-tooltip {
|
||||
padding: 8px;
|
||||
position: absolute;
|
||||
z-index: 9999;
|
||||
max-width: 300px;
|
||||
-webkit-box-shadow: 0 0 5px #aaa;
|
||||
box-shadow: 0 0 5px #aaa;
|
||||
}
|
||||
/* Fades and background-images don't work well together in IE6, drop the image */
|
||||
* html .ui-tooltip {
|
||||
background-image: none;
|
||||
}
|
||||
body .ui-tooltip { border-width: 2px; }
|
||||
|
||||
/* Component containers
|
||||
----------------------------------*/
|
||||
.ui-widget { font-family: inherit; font-size: 12px; }
|
||||
.ui-widget .ui-widget { font-size: 1em; }
|
||||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: sans-serif; font-size: 1em; }
|
||||
.ui-widget-content { border: 1px solid #cccccc; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #333; }
|
||||
.ui-widget-content a { color: #333; }
|
||||
.ui-widget-header { border: 1px solid #333; background: #333 url(images/ui-bg_flat_100_333333_40x100.png) 50% 50% repeat-x; color: #fff; font-weight: bold; }
|
||||
.ui-widget-header a { color: #fff; }
|
||||
|
||||
/* Interaction states
|
||||
----------------------------------*/
|
||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: none; background: #ddd url(images/ui-bg_flat_75_dddddd_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }
|
||||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
|
||||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 0; background: #333 url(images/ui-bg_flat_100_333333_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #fff; }
|
||||
.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #fff; text-decoration: none; }
|
||||
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #0074bd; background: #0074bd url(images/ui-bg_flat_65_0074bd_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
|
||||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #ffffff; text-decoration: none; }
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fffce5; background: #fffce5 url(images/ui-bg_flat_100_fffce5_40x100.png) 50% 50% repeat-x; color: #000; }
|
||||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #000; }
|
||||
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #990000; background: #990000 url(images/ui-bg_flat_95_990000_40x100.png) 50% 50% repeat-x; color: #fff; }
|
||||
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #fff; }
|
||||
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #fff; }
|
||||
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
||||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
||||
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
||||
.ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */
|
||||
|
||||
/* Icons
|
||||
----------------------------------*/
|
||||
|
||||
/* states and images */
|
||||
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_333333_256x240.png); }
|
||||
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_333333_256x240.png); }
|
||||
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
||||
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
|
||||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
||||
.ui-state-active .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
||||
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_000000_256x240.png); }
|
||||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
||||
|
||||
/* positioning */
|
||||
.ui-icon-carat-1-n { background-position: 0 0; }
|
||||
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
||||
.ui-icon-carat-1-e { background-position: -32px 0; }
|
||||
.ui-icon-carat-1-se { background-position: -48px 0; }
|
||||
.ui-icon-carat-1-s { background-position: -64px 0; }
|
||||
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
||||
.ui-icon-carat-1-w { background-position: -96px 0; }
|
||||
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
||||
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
||||
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
||||
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
||||
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
||||
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
||||
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
||||
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
||||
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
||||
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
||||
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
||||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
||||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
||||
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
||||
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
||||
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
||||
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
||||
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
||||
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
||||
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
||||
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
||||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
||||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
||||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
||||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
||||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
||||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
||||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
||||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
||||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
||||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
||||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
||||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
||||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
||||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
||||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
||||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
||||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
||||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
||||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
||||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
||||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
||||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
||||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
||||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
||||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
||||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
||||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
||||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
||||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
||||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
||||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
||||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
||||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
||||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
||||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
||||
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
||||
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
||||
.ui-icon-extlink { background-position: -32px -80px; }
|
||||
.ui-icon-newwin { background-position: -48px -80px; }
|
||||
.ui-icon-refresh { background-position: -64px -80px; }
|
||||
.ui-icon-shuffle { background-position: -80px -80px; }
|
||||
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
||||
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
||||
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
||||
.ui-icon-folder-open { background-position: -16px -96px; }
|
||||
.ui-icon-document { background-position: -32px -96px; }
|
||||
.ui-icon-document-b { background-position: -48px -96px; }
|
||||
.ui-icon-note { background-position: -64px -96px; }
|
||||
.ui-icon-mail-closed { background-position: -80px -96px; }
|
||||
.ui-icon-mail-open { background-position: -96px -96px; }
|
||||
.ui-icon-suitcase { background-position: -112px -96px; }
|
||||
.ui-icon-comment { background-position: -128px -96px; }
|
||||
.ui-icon-person { background-position: -144px -96px; }
|
||||
.ui-icon-print { background-position: -160px -96px; }
|
||||
.ui-icon-trash { background-position: -176px -96px; }
|
||||
.ui-icon-locked { background-position: -192px -96px; }
|
||||
.ui-icon-unlocked { background-position: -208px -96px; }
|
||||
.ui-icon-bookmark { background-position: -224px -96px; }
|
||||
.ui-icon-tag { background-position: -240px -96px; }
|
||||
.ui-icon-home { background-position: 0 -112px; }
|
||||
.ui-icon-flag { background-position: -16px -112px; }
|
||||
.ui-icon-calendar { background-position: -32px -112px; }
|
||||
.ui-icon-cart { background-position: -48px -112px; }
|
||||
.ui-icon-pencil { background-position: -64px -112px; }
|
||||
.ui-icon-clock { background-position: -80px -112px; }
|
||||
.ui-icon-disk { background-position: -96px -112px; }
|
||||
.ui-icon-calculator { background-position: -112px -112px; }
|
||||
.ui-icon-zoomin { background-position: -128px -112px; }
|
||||
.ui-icon-zoomout { background-position: -144px -112px; }
|
||||
.ui-icon-search { background-position: -160px -112px; }
|
||||
.ui-icon-wrench { background-position: -176px -112px; }
|
||||
.ui-icon-gear { background-position: -192px -112px; }
|
||||
.ui-icon-heart { background-position: -208px -112px; }
|
||||
.ui-icon-star { background-position: -224px -112px; }
|
||||
.ui-icon-link { background-position: -240px -112px; }
|
||||
.ui-icon-cancel { background-position: 0 -128px; }
|
||||
.ui-icon-plus { background-position: -16px -128px; }
|
||||
.ui-icon-plusthick { background-position: -32px -128px; }
|
||||
.ui-icon-minus { background-position: -48px -128px; }
|
||||
.ui-icon-minusthick { background-position: -64px -128px; }
|
||||
body.adminimal-theme .ui-icon-close { background-image: url("images/x-white.png"); background-position: 0 0; }
|
||||
body.adminimal-theme .ui-icon-closethick { background-image: url("images/x-white.png"); background-position: 14px 3px; width: 45px; left: 0; top: 0;}
|
||||
.ui-icon-key { background-position: -112px -128px; }
|
||||
.ui-icon-lightbulb { background-position: -128px -128px; }
|
||||
.ui-icon-scissors { background-position: -144px -128px; }
|
||||
.ui-icon-clipboard { background-position: -160px -128px; }
|
||||
.ui-icon-copy { background-position: -176px -128px; }
|
||||
.ui-icon-contact { background-position: -192px -128px; }
|
||||
.ui-icon-image { background-position: -208px -128px; }
|
||||
.ui-icon-video { background-position: -224px -128px; }
|
||||
.ui-icon-script { background-position: -240px -128px; }
|
||||
.ui-icon-alert { background-position: 0 -144px; }
|
||||
.ui-icon-info { background-position: -16px -144px; }
|
||||
.ui-icon-notice { background-position: -32px -144px; }
|
||||
.ui-icon-help { background-position: -48px -144px; }
|
||||
.ui-icon-check { background-position: -64px -144px; }
|
||||
.ui-icon-bullet { background-position: -80px -144px; }
|
||||
.ui-icon-radio-on { background-position: -96px -144px; }
|
||||
.ui-icon-radio-off { background-position: -112px -144px; }
|
||||
.ui-icon-pin-w { background-position: -128px -144px; }
|
||||
.ui-icon-pin-s { background-position: -144px -144px; }
|
||||
.ui-icon-play { background-position: 0 -160px; }
|
||||
.ui-icon-pause { background-position: -16px -160px; }
|
||||
.ui-icon-seek-next { background-position: -32px -160px; }
|
||||
.ui-icon-seek-prev { background-position: -48px -160px; }
|
||||
.ui-icon-seek-end { background-position: -64px -160px; }
|
||||
.ui-icon-seek-start { background-position: -80px -160px; }
|
||||
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
||||
.ui-icon-seek-first { background-position: -80px -160px; }
|
||||
.ui-icon-stop { background-position: -96px -160px; }
|
||||
.ui-icon-eject { background-position: -112px -160px; }
|
||||
.ui-icon-volume-off { background-position: -128px -160px; }
|
||||
.ui-icon-volume-on { background-position: -144px -160px; }
|
||||
.ui-icon-power { background-position: 0 -176px; }
|
||||
.ui-icon-signal-diag { background-position: -16px -176px; }
|
||||
.ui-icon-signal { background-position: -32px -176px; }
|
||||
.ui-icon-battery-0 { background-position: -48px -176px; }
|
||||
.ui-icon-battery-1 { background-position: -64px -176px; }
|
||||
.ui-icon-battery-2 { background-position: -80px -176px; }
|
||||
.ui-icon-battery-3 { background-position: -96px -176px; }
|
||||
.ui-icon-circle-plus { background-position: 0 -192px; }
|
||||
.ui-icon-circle-minus { background-position: -16px -192px; }
|
||||
.ui-icon-circle-close { background-position: -32px -192px; }
|
||||
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
||||
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
||||
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
||||
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
||||
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
||||
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
||||
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
||||
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
||||
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
||||
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
||||
.ui-icon-circle-check { background-position: -208px -192px; }
|
||||
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
||||
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
||||
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
||||
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
||||
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
||||
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
||||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
||||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
||||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
||||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
||||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
||||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
||||
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Corner radius */
|
||||
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 0px; -webkit-border-top-left-radius: 0px; -khtml-border-top-left-radius: 0px; border-top-left-radius: 0px; }
|
||||
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 0px; -webkit-border-top-right-radius: 0px; -khtml-border-top-right-radius: 0px; border-top-right-radius: 0px; }
|
||||
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 0px; -webkit-border-bottom-left-radius: 0px; -khtml-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; }
|
||||
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 0px; -webkit-border-bottom-right-radius: 0px; -khtml-border-bottom-right-radius: 0px; border-bottom-right-radius: 0px; }
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); }
|
||||
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .3;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
|
||||
@@ -0,0 +1,260 @@
|
||||
/* Mobile Styles - You can edit the media query from the theme settings page. */
|
||||
#branding {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#branding.has-primary-tabs {
|
||||
border-bottom: 5px solid #0074BD;
|
||||
}
|
||||
|
||||
#branding .breadcrumb {
|
||||
padding: 10px 10px 0px 10px;
|
||||
}
|
||||
|
||||
#branding h1.page-title {
|
||||
padding: 0 0 15px 10px;
|
||||
}
|
||||
|
||||
#branding .add-or-remove-shortcuts {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#page {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
padding: 10px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul.primary {
|
||||
float: none;
|
||||
clear: both;
|
||||
display: block;
|
||||
padding: 0 10px 0 10px;
|
||||
background: #333;
|
||||
width: 100%;
|
||||
border-bottom: 5px solid #0074BD;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
ul.primary li {
|
||||
clear: both;
|
||||
display: table;
|
||||
float: none;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
body.adminimal-theme ul.primary li a:active, body.adminimal-theme ul.primary li a:link, body.adminimal-theme ul.primary li a:visited {
|
||||
border: 0 none;
|
||||
display: block;
|
||||
font-size: 20px;
|
||||
font-weight: normal;
|
||||
line-height: 1.2em;
|
||||
width: 100%;
|
||||
background: #444;
|
||||
color: #fff;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
body.adminimal-theme ul.primary li a.active, body.adminimal-theme ul.primary li a.active:link, body.adminimal-theme ul.primary li a.active:visited, body.adminimal-theme ul.primary li a:hover {
|
||||
margin-top: 5px;
|
||||
border: 0 none;
|
||||
background-color: #0074BD;
|
||||
}
|
||||
|
||||
ul.secondary li {
|
||||
float: left;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
body.adminimal-theme ul.secondary li a, body.adminimal-theme ul.secondary li a:hover, body.adminimal-theme ul.secondary li.active a, body.adminimal-theme ul.secondary li.active a.active {
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
body.adminimal-theme div.admin .right, body.adminimal-theme div.admin .left {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.help-items {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-item label, .exposed-filters .form-item label {
|
||||
margin: 0 0.5em 0.25em 0;
|
||||
}
|
||||
|
||||
.container-inline div, .container-inline label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.exposed-filters .form-item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.exposed-filters .form-select {
|
||||
clear: both;
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.views-exposed-form label {
|
||||
margin: 0;
|
||||
padding: 0 0 0.5em;
|
||||
}
|
||||
|
||||
.overflow-fix {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
input, textarea, img {
|
||||
max-width: 99%;
|
||||
}
|
||||
|
||||
input[size] {
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
.system-themes-list-enabled .theme-default .theme-info h3 {
|
||||
clear: both;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
table.sticky-header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.system-themes-list-enabled .theme-info {
|
||||
clear: both;
|
||||
float: left;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
ul.action-links li {
|
||||
clear: both;
|
||||
float: left;
|
||||
margin: 0 1em 0 0;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
ul.action-links li:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed {
|
||||
position: relative;
|
||||
}
|
||||
.views-display-top .ctools-button-processed, .views-ui-display-tab-bucket .ctools-button-processed {
|
||||
font-size: 13px;
|
||||
left: 5px;
|
||||
margin-bottom: 10px;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
.views-display-columns > * {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
div.vertical-tabs {
|
||||
background: #fff;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.vertical-tabs .vertical-tabs-list {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
padding-bottom: 20px;
|
||||
width: 100%;
|
||||
border: none;
|
||||
}
|
||||
div.vertical-tabs .vertical-tabs-panes {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
clear: both;
|
||||
}
|
||||
div.vertical-tabs ul li.vertical-tab-button a {
|
||||
background: none repeat scroll 0 0 #eee;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.vertical-tabs ul li.vertical-tab-button a {
|
||||
background: #eee;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.vertical-tabs ul li.vertical-tab-button a:hover, div.vertical-tabs ul li.selected a:hover, div.vertical-tabs ul li.selected a, div.vertical-tabs ul li.selected a:focus, div.vertical-tabs ul li.selected a:active {
|
||||
background: #ddd;
|
||||
border: none;
|
||||
}
|
||||
|
||||
html.js .adminimal-theme #module-filter-modules {
|
||||
margin-left: 0;
|
||||
margin-bottom: 55px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
html.js .adminimal-theme #module-filter-tabs>ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
html.js .adminimal-theme #module-filter-submit {
|
||||
bottom: 0;
|
||||
margin-left: -10px;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 999;
|
||||
border: none;
|
||||
border-top: 3px solid #0074BD;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
table.module-filter-tabs-processed td.description, table.module-filter-tabs-processed > thead:nth-child(1) > tr:nth-child(1) > th:nth-child(4) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
html.js .adminimal-theme #module-filter-show-wrapper .form-item-module-filter-show-required {
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
html.js .adminimal-theme #module-filter-show-wrapper .form-item {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
/* Sidebars */
|
||||
#content-wrapper {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#main-content {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#sidebar-left .region-sidebar-left, #sidebar-right .region-sidebar-right {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#sidebar-left .region-sidebar-left {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
#sidebar-right .region-sidebar-right {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.adminimal-theme #module-filter-tabs.top-fixed{
|
||||
position: relative;
|
||||
}
|
||||
@@ -0,0 +1,216 @@
|
||||
|
||||
/**
|
||||
* Reset CSS styles.
|
||||
*
|
||||
* Based on Eric Meyer's "Reset CSS 1.0" tool from
|
||||
* http://meyerweb.com/eric/tools/css/reset
|
||||
*/
|
||||
|
||||
html,
|
||||
body,
|
||||
div,
|
||||
span,
|
||||
applet,
|
||||
object,
|
||||
iframe,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
blockquote,
|
||||
pre,
|
||||
a,
|
||||
abbr,
|
||||
acronym,
|
||||
address,
|
||||
big,
|
||||
cite,
|
||||
code,
|
||||
del,
|
||||
dfn,
|
||||
em,
|
||||
font,
|
||||
img,
|
||||
ins,
|
||||
kbd,
|
||||
q,
|
||||
s,
|
||||
samp,
|
||||
small,
|
||||
strike,
|
||||
strong,
|
||||
sub,
|
||||
sup,
|
||||
tt,
|
||||
var,
|
||||
b,
|
||||
u,
|
||||
i,
|
||||
center,
|
||||
dl,
|
||||
dt,
|
||||
dd,
|
||||
ol,
|
||||
ul,
|
||||
li,
|
||||
fieldset,
|
||||
form,
|
||||
input,
|
||||
select,
|
||||
textarea,
|
||||
label,
|
||||
legend,
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td,
|
||||
/* Drupal: system-menus.css */
|
||||
td.menu-disabled,
|
||||
ul.links,
|
||||
ul.links.inline,
|
||||
ul.links li,
|
||||
.block ul,
|
||||
/* Drupal: admin.css */
|
||||
div.admin,
|
||||
/* Drupal: system.css */
|
||||
tr.even,
|
||||
tr.odd,
|
||||
tr.drag,
|
||||
tbody,
|
||||
tbody th,
|
||||
thead th,
|
||||
.breadcrumb,
|
||||
.item-list .icon,
|
||||
.item-list .title,
|
||||
.item-list ul,
|
||||
.item-list ul li,
|
||||
ol.task-list li.active,
|
||||
.form-item,
|
||||
tr.odd .form-item,
|
||||
tr.even .form-item,
|
||||
.form-item .description,
|
||||
.form-item label,
|
||||
.form-item label.option,
|
||||
.form-checkboxes,
|
||||
.form-radios,
|
||||
.form-checkboxes .form-item,
|
||||
.form-radios .form-item,
|
||||
.marker,
|
||||
.form-required,
|
||||
.more-link,
|
||||
.more-help-link,
|
||||
.item-list .pager,
|
||||
.item-list .pager li,
|
||||
.pager-current,
|
||||
.tips,
|
||||
ul.primary,
|
||||
ul.primary li,
|
||||
ul.primary li a,
|
||||
ul.primary li.active a,
|
||||
ul.primary li a:hover,
|
||||
ul.secondary,
|
||||
ul.secondary li,
|
||||
ul.secondary a,
|
||||
ul.secondary a.active,
|
||||
.resizable-textarea {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* Drupal: system-menus.css */
|
||||
ul.links,
|
||||
ul.links.inline,
|
||||
ul.links li,
|
||||
.block ul,
|
||||
ol,
|
||||
ul,
|
||||
.item-list ul,
|
||||
.item-list ul li {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote,
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* Remember to highlight inserts somehow! */
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* Tables still need 'cellspacing="0"' in the markup. */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Font reset.
|
||||
*
|
||||
* Specifically targets form elements which browsers often times give
|
||||
* special treatment.
|
||||
*/
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
textarea {
|
||||
font-size: 1em;
|
||||
line-height: 1.538em;
|
||||
}
|
||||
/**
|
||||
* Markup free clearing.
|
||||
*
|
||||
* Consider adding your own selectors to this instead of finding ways
|
||||
* to sneak the clearfix class into Drupal's markup.
|
||||
* From http://perishablepress.com/press/2009/12/06/new-clearfix-hack
|
||||
*/
|
||||
ul.links:after,
|
||||
div.admin-panel .body:after,
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* Exclude inline links from clearfix behavior */
|
||||
ul.inline:after {
|
||||
content: "";
|
||||
display: none;
|
||||
clear: none;
|
||||
}
|
||||
/* IE6 */
|
||||
* html .form-item,
|
||||
* html ul.links,
|
||||
* html div.admin-panel .body,
|
||||
* html .clearfix {
|
||||
height: 1%;
|
||||
}
|
||||
/* IE7 */
|
||||
*:first-child + html .form-item,
|
||||
*:first-child + html ul.links,
|
||||
*:first-child + html div.admin-panel .body,
|
||||
*:first-child + html .clearfix {
|
||||
min-height: 1%;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
/* You can safely delete this file. Is no longer needed. */
|
||||
@@ -0,0 +1,241 @@
|
||||
|
||||
/**
|
||||
* Generic elements.
|
||||
*/
|
||||
dl dd,
|
||||
dl dl {
|
||||
margin-right: 20px;
|
||||
}
|
||||
ul,
|
||||
.block ul,
|
||||
.item-list ul {
|
||||
margin: 0.25em 1.5em 0.25em 0;
|
||||
}
|
||||
ol {
|
||||
margin: 0.25em 2em 0.25em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Skip link.
|
||||
*/
|
||||
#skip-link {
|
||||
right: 50%;
|
||||
margin-right: -5.25em;
|
||||
}
|
||||
#skip-link a,
|
||||
#skip-link a:link,
|
||||
#skip-link a:visited {
|
||||
padding: 1px 10px 2px 10px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Branding.
|
||||
*/
|
||||
#branding {
|
||||
padding: 20px 20px 0 20px;
|
||||
}
|
||||
|
||||
#branding div.block {
|
||||
float: left;
|
||||
padding-left: 0;
|
||||
padding-right: 10px;
|
||||
}
|
||||
#branding div.block form div.form-item {
|
||||
float: right;
|
||||
}
|
||||
#branding div.block form input.form-text {
|
||||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Help.
|
||||
*/
|
||||
#help div.more-help-link {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/**
|
||||
* Page title.
|
||||
*/
|
||||
#branding h1.page-title {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tabs.
|
||||
*/
|
||||
ul.primary li,
|
||||
ul.primary li a:link,
|
||||
ul.primary li a.active {
|
||||
float: right;
|
||||
}
|
||||
ul.primary,
|
||||
ul.secondary {
|
||||
float: left;
|
||||
}
|
||||
ul.secondary li {
|
||||
float: none;
|
||||
}
|
||||
ul.primary {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Page layout.
|
||||
*/
|
||||
#page {
|
||||
padding: 20px 0 40px 0;
|
||||
margin-left: 40px;
|
||||
margin-right: 40px;
|
||||
}
|
||||
#secondary-links ul.links li {
|
||||
padding: 0 0 10px 10px;
|
||||
}
|
||||
ul.links li,
|
||||
ul.inline li {
|
||||
padding-left: 1em;
|
||||
padding-right: 0;
|
||||
}
|
||||
ul.admin-list li {
|
||||
padding: 9px 30px 0 0;
|
||||
margin-right: 0;
|
||||
background: url(images/list-item-rtl.png) no-repeat right 11px;
|
||||
}
|
||||
ul.admin-list li a {
|
||||
margin-right: -30px;
|
||||
margin-left: 0;
|
||||
padding: 0 30px 4px 0;
|
||||
}
|
||||
ul.admin-list.compact li a {
|
||||
margin-right: 0;
|
||||
}
|
||||
ul.admin-list li div.description a {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tables.
|
||||
*/
|
||||
table th.active a {
|
||||
padding: 0 0 0 25px;
|
||||
}
|
||||
table th.active img {
|
||||
left: 3px;
|
||||
right: auto;
|
||||
}
|
||||
/**
|
||||
* Exception for webkit bug with the right border of the last cell
|
||||
* in some tables, since it's webkit only, we can use :last-child
|
||||
*/
|
||||
tr td:last-child {
|
||||
border-left: 1px solid #bebfb9;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fieldsets.
|
||||
*/
|
||||
fieldset {
|
||||
padding: 2.5em 0 0 0;
|
||||
}
|
||||
fieldset .fieldset-legend {
|
||||
padding-right: 15px;
|
||||
right: 0;
|
||||
}
|
||||
fieldset .fieldset-wrapper {
|
||||
padding: 0 15px 13px 13px;
|
||||
}
|
||||
|
||||
/* Filter */
|
||||
.filter-wrapper .form-item,
|
||||
.filter-wrapper .filter-guidelines,
|
||||
.filter-wrapper .filter-help {
|
||||
padding: 2px 0 0 0;
|
||||
}
|
||||
ul.tips li {
|
||||
margin: 0.25em 1.5em 0.25em 0;
|
||||
}
|
||||
body div.form-type-radio div.description,
|
||||
body div.form-type-checkbox div.description {
|
||||
margin-left: 0;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
input.form-submit,
|
||||
a.button {
|
||||
margin-left: 1em;
|
||||
margin-right: 0;
|
||||
}
|
||||
ul.action-links li {
|
||||
float: right;
|
||||
margin: 0 0 0 1em;
|
||||
}
|
||||
ul.action-links a {
|
||||
padding-left: 0;
|
||||
padding-right: 15px;
|
||||
background-position: right center;
|
||||
}
|
||||
|
||||
/* Update options. */
|
||||
div.admin-options label,
|
||||
div.admin-options div.form-item {
|
||||
margin-left: 10px;
|
||||
margin-right: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Maintenance theming */
|
||||
body.in-maintenance #sidebar-first {
|
||||
float: right;
|
||||
}
|
||||
body.in-maintenance #content {
|
||||
float: left;
|
||||
padding-left: 20px;
|
||||
padding-right: 0;
|
||||
}
|
||||
ol.task-list {
|
||||
margin-right: 0;
|
||||
}
|
||||
ol.task-list li {
|
||||
padding: 0.5em 20px 0.5em 1em;
|
||||
}
|
||||
ol.task-list li.active {
|
||||
background: transparent url(images/task-item-rtl.png) no-repeat right 50%;
|
||||
padding: 0.5em 20px 0.5em 1em;
|
||||
}
|
||||
|
||||
/* Overlay theming */
|
||||
.overlay #branding div.breadcrumb {
|
||||
float: right;
|
||||
}
|
||||
.overlay ul.secondary {
|
||||
margin: -1.4em 0 0.3em 0;
|
||||
}
|
||||
|
||||
/* Shortcut theming */
|
||||
div.add-or-remove-shortcuts {
|
||||
float: none;
|
||||
padding-left: 0;
|
||||
padding-right: 6px;
|
||||
}
|
||||
|
||||
/* Dashboard */
|
||||
#dashboard div.block div.content {
|
||||
padding: 10px 5px 5px 5px;
|
||||
}
|
||||
#dashboard div.block div.content ul.menu {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
/* Recent content block */
|
||||
#block-node-recent .more-link {
|
||||
padding: 0 0 5px 5px;
|
||||
}
|
||||
|
||||
/* User login block */
|
||||
#user-login-form .openid-links {
|
||||
margin-right: 0;
|
||||
}
|
||||
#user-login-form .openid-links .user-link {
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
/* Tablet Styles - You can edit the media query from the theme settings page. */
|
||||
html body .overflow-fix {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
html body .ctools-dropbutton-processed {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Sidebars */
|
||||
#main-content {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#sidebar-left .region-sidebar-left, #sidebar-right .region-sidebar-right {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#sidebar-left .region-sidebar-left {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
#sidebar-right .region-sidebar-right {
|
||||
padding-left: 0px;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
|
||||
/**
|
||||
* Override of misc/vertical-tabs-rtl.css.
|
||||
*/
|
||||
div.vertical-tabs {
|
||||
background: #fff url(images/fc-rtl.png) repeat-y right 0;
|
||||
}
|
||||
div.vertical-tabs .vertical-tabs-list {
|
||||
float: right;
|
||||
margin: 0 0 -1px -100%;
|
||||
}
|
||||
div.vertical-tabs ul li.selected a,
|
||||
div.vertical-tabs ul li.selected a:hover,
|
||||
div.vertical-tabs ul li.selected a:focus,
|
||||
div.vertical-tabs ul li.selected a:active {
|
||||
border-left-color: #fff;
|
||||
}
|
||||
div.vertical-tabs .vertical-tabs-panes {
|
||||
margin: 0 265px 0 0;
|
||||
padding: 10px 0 10px 15px;
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
|
||||
/**
|
||||
* Override of misc/vertical-tabs.css.
|
||||
*/
|
||||
div.vertical-tabs {
|
||||
background: #fff url(images/fc.png) repeat-y 0 0; /* LTR */
|
||||
border: 1px solid #ccc;
|
||||
margin: 10px 0;
|
||||
position: relative;
|
||||
}
|
||||
div.vertical-tabs .field-group-tab fieldset {
|
||||
border: solid 1px #ddd;
|
||||
border-top: 3px solid #0074BD;
|
||||
padding: 12px;
|
||||
margin: 18px 0;
|
||||
}
|
||||
div.vertical-tabs .vertical-tabs-panes legend {
|
||||
display: inherit !important;
|
||||
}
|
||||
div.vertical-tabs .vertical-tabs-list {
|
||||
border-bottom: 1px solid #ccc;
|
||||
float: left; /* LTR */
|
||||
font-size: 1em;
|
||||
line-height: 1;
|
||||
margin: 0 -100% -1px 0; /* LTR */
|
||||
padding: 0;
|
||||
width: 240px;
|
||||
}
|
||||
div.vertical-tabs ul li.vertical-tab-button {
|
||||
list-style: none;
|
||||
list-style-image: none;
|
||||
margin: 0;
|
||||
}
|
||||
div.vertical-tabs ul li.vertical-tab-button a {
|
||||
border-top: 1px solid #ccc;
|
||||
display: block;
|
||||
padding: 10px;
|
||||
}
|
||||
div.vertical-tabs ul li.first a {
|
||||
border-top: 0;
|
||||
}
|
||||
div.vertical-tabs ul li.vertical-tab-button strong {
|
||||
font-size: 0.923em;
|
||||
}
|
||||
div.vertical-tabs ul li.vertical-tab-button .summary {
|
||||
color: #666;
|
||||
display: block;
|
||||
font-size: 0.846em;
|
||||
padding-top: 0.4em;
|
||||
}
|
||||
div.vertical-tabs ul li.vertical-tab-button a:hover,
|
||||
div.vertical-tabs ul li.vertical-tab-button a:focus {
|
||||
background: #d5d5d5;
|
||||
text-decoration: none;
|
||||
outline: 0;
|
||||
}
|
||||
div.vertical-tabs ul li.selected a,
|
||||
div.vertical-tabs ul li.selected a:hover,
|
||||
div.vertical-tabs ul li.selected a:focus,
|
||||
div.vertical-tabs ul li.selected a:active {
|
||||
background: #fff;
|
||||
border-right-color: #fff; /* LTR */
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
div.vertical-tabs ul li.first.selected a,
|
||||
div.vertical-tabs ul li.first.selected a:hover {
|
||||
border-top: 0;
|
||||
}
|
||||
div.vertical-tabs ul li.selected a:focus strong {
|
||||
text-decoration: underline;
|
||||
}
|
||||
div.vertical-tabs .vertical-tabs-panes {
|
||||
margin: 0 0 0 265px; /* LTR */
|
||||
padding: 10px 15px 10px 0; /* LTR */
|
||||
}
|
||||
div.vertical-tabs fieldset.vertical-tabs-pane > legend {
|
||||
/*display: none;*/
|
||||
}
|
||||
.vertical-tabs-pane .fieldset-wrapper > div:first-child {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent text inputs from overflowing when container is too narrow. "width" is
|
||||
* applied to override hardcoded cols or size attributes and used in conjunction
|
||||
* with "box-sizing" to prevent box model issues from occurring in most browsers.
|
||||
*/
|
||||
.vertical-tabs .form-type-textfield input {
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
* html .vertical-tabs .form-type-textfield,
|
||||
* html .vertical-tabs .form-textarea-wrapper {
|
||||
width: 95%; /* IE6 */
|
||||
}
|
||||