1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/themes/three_nids/css/screen.css

832 lines
13 KiB
CSS
Raw Normal View History

2009-09-23 06:43:11 +00:00
/**
* Gallery 3 Default Theme Screen Styles
*
* @requires YUI reset, font, grids CSS
*
* Sheet organization:
* 1) Basic HTML elements
2009-10-19 07:21:48 +00:00
* 2) Reusable content blocks
* 3) Page layout containers
* 4) Content blocks in specific layout containers
* 5) Navigation and menus
* 6) Browser hacks
* 7) jQuery and jQuery UI
* 8) Right-to-left language styles
2009-09-23 06:43:11 +00:00
*/
/** *******************************************************************
* 1) Basic HTML elements
**********************************************************************/
body, html {
background-color: #ccc;
font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: #e8e8e8;
}
p {
margin-bottom: 1em;
}
em {
font-style: oblique;
}
h1, h2, h3, h4, h5, strong, th {
font-weight: bold;
}
h1 {
font-size: 1.5em;
}
2009-10-19 07:21:48 +00:00
#g-search-results h1 {
2009-09-23 06:43:11 +00:00
margin-bottom: 1em;
}
2009-10-19 07:21:48 +00:00
#g-progress h1 {
2009-09-23 06:43:11 +00:00
font-size: 1.1em;
}
h2 {
font-size: 1.2em;
}
2009-10-19 07:21:48 +00:00
#g-sidebar .g-block h2 {
2009-09-23 06:43:11 +00:00
font-size: 1.2em;
}
2009-10-19 07:21:48 +00:00
#g-sidebar .g-block li {
2009-09-23 06:43:11 +00:00
margin-bottom: .6em;
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 0.9em;
}
/* Links ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
a,
2009-10-19 07:21:48 +00:00
.g-menu a,
#g-dialog a,
.g-button,
.g-button:hover,
.g-button:active,
2009-09-23 06:43:11 +00:00
a.ui-state-hover,
input.ui-state-hover,
button.ui-state-hover {
color: #ffffcc !important;
cursor: pointer !important;
text-decoration: none;
-moz-outline-style: none;
}
a:hover,
2009-10-19 07:21:48 +00:00
#g-dialog a:hover {
2009-09-23 06:43:11 +00:00
text-decoration: underline;
}
2009-10-19 07:21:48 +00:00
.g-menu a:hover {
2009-09-23 06:43:11 +00:00
text-decoration: none;
}
2009-10-19 07:21:48 +00:00
#g-dialog #g-action-status li {
2009-09-23 06:43:11 +00:00
width: 400px;
white-space: normal;
padding-left: 32px;
}
/* Tables ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
table {
width: 100%;
}
2009-10-19 07:21:48 +00:00
#g-content table {
2009-09-23 06:43:11 +00:00
margin: 1em 0;
}
caption,
th {
text-align: left;
}
th,
td {
border: none;
border-bottom: 1px solid #ccc;
padding: .5em;
vertical-align: top;
}
/* Forms ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
fieldset {
border: 1px solid #ccc;
padding-bottom: .8em;
}
2009-10-19 07:21:48 +00:00
#g-banner fieldset,
#g-sidebar fieldset,
.g-short-form fieldset {
2009-09-23 06:43:11 +00:00
border: none;
}
legend {
font-weight: bold;
margin-left: 1em;
color: #e8e8e8;
}
2009-10-19 07:21:48 +00:00
#g-banner legend,
#g-sidebar legend,
#g-content #g-search-form legend,
2009-09-23 06:43:11 +00:00
input[type="hidden"],
2009-10-19 07:21:48 +00:00
.g-short-form label {
2009-09-23 06:43:11 +00:00
display: none;
}
label {
cursor: help;
}
input[type="text"],
input[type="password"] {
width: 50%;
}
input[type="text"],
input[type="password"],
textarea {
border: 1px solid #e8e8e8;
border-top-color: #ccc;
border-left-color: #ccc;
color: #333;
}
textarea {
width: 90%;
height: 12em;
}
input:focus,
textarea:focus,
option:focus {
background-color: #ffc;
color: #000;
}
/* Form layout ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
form li {
margin: 0 !important;
padding: .3em 1.5em .3em 1em;
}
form ul ul {
clear: both;
}
form ul ul li {
float: left;
}
input,
select,
textarea {
display: block;
clear: both;
padding: .2em;
}
input[type="submit"],
input[type="reset"] {
display: inline;
clear: none;
float: left;
}
/* Form validation ~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
form.g-error input[type="text"],
li.g-error input[type="text"],
form.g-error input[type="password"],
li.g-error input[type="password"],
form.g-error input[type="checkbox"],
li.g-error input[type="checkbox"],
form.g-error input[type="radio"],
li.g-error input[type="radio"],
form.g-error textarea,
li.g-error textarea,
form.g-error select,
li.g-error select {
2009-09-23 06:43:11 +00:00
border: 2px solid red;
}
/** *******************************************************************
2009-10-19 07:21:48 +00:00
* 2) Reusable content blocks
2009-09-23 06:43:11 +00:00
*********************************************************************/
2009-10-19 07:21:48 +00:00
.g-block h2 {
background-color: #333;
2009-09-23 06:43:11 +00:00
padding: .3em .8em;
}
2009-10-19 07:21:48 +00:00
.g-block-content {
2009-09-23 06:43:11 +00:00
margin-top: 1em;
}
/* Status messages ~~~~~~~~~~~~~~~~~~~~~~~ */
/* Inline layout (forms, lists) ~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
.g-short-form li {
2009-09-23 06:43:11 +00:00
float: left;
padding: .4em 0;
}
2009-10-19 07:21:48 +00:00
.g-short-form input[type="text"] {
2009-09-23 06:43:11 +00:00
color: #666;
padding: .3em .6em;
width: 11em;
}
/*** ******************************************************************
2009-10-19 07:21:48 +00:00
* 3) Page layout containers
2009-09-23 06:43:11 +00:00
*********************************************************************/
/* View container ~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
.g-view {
2009-09-23 06:43:11 +00:00
background-color: #333333;
border: 1px solid #e8e8e8;
border-bottom: none;
}
/* Layout containers ~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-header {
2009-09-23 06:43:11 +00:00
margin-bottom: 1em;
background-color: #484848;
border-bottom: 1px solid #e8e8e8;
}
2009-10-19 07:21:48 +00:00
#g-banner {
2009-09-23 06:43:11 +00:00
background-color: #333333;
border-bottom: 1px solid #e8e8e8;
font-size: .8em;
min-height: 5em;
padding: 1em 20px;
position: relative;
}
2009-10-19 07:21:48 +00:00
#g-content {
font-size: 1.2em;
2009-09-23 06:43:11 +00:00
padding-left: 20px;
position: relative;
width: 600px;
}
2009-10-19 07:21:48 +00:00
#g-sidebar {
background-color: #333333;
font-size: .9em;
2009-09-23 06:43:11 +00:00
padding: 0 20px;
width: 220px;
}
2009-10-19 07:21:48 +00:00
#g-footer {
2009-09-23 06:43:11 +00:00
background-color: #484848;
border-top: 1px solid #ccc;
font-size: .8em;
margin-top: 20px;
padding: 10px 20px;
}
/** *******************************************************************
2009-10-19 07:21:48 +00:00
* 4) Content blocks in specific layout containers
2009-09-23 06:43:11 +00:00
*********************************************************************/
/* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-banner #g-logo img {
2009-09-23 06:43:11 +00:00
margin: 0;
}
2009-10-19 07:21:48 +00:00
#g-banner #g-quick-search-form {
2009-09-23 06:43:11 +00:00
clear: right;
float: right;
margin-top: 1em;
}
2009-10-19 07:21:48 +00:00
#g-banner #g-quick-search-form input[type='text'] {
2009-09-23 06:43:11 +00:00
width: 17em;
}
2009-10-19 07:21:48 +00:00
#g-content .g-block h2 {
2009-09-23 06:43:11 +00:00
background-color: transparent;
padding-left: 0;
}
2009-10-19 07:21:48 +00:00
#g-sidebar .g-block-content {
2009-09-23 06:43:11 +00:00
padding-left: 1em;
}
/* Album content ~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid {
2009-09-23 06:43:11 +00:00
margin: 1em 0;
position: relative;
z-index: 1;
}
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid .g-item {
2009-09-23 06:43:11 +00:00
background-color: #484848;
border: 1px solid #e8e8e8;
float: left;
font-size: .7em;
padding: .6em 8px;
position: relative;
text-align: center;
2009-10-19 07:21:48 +00:00
width: 180px;
height: 210px;
2009-09-23 06:43:11 +00:00
z-index: 1;
}
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid .g-item h2 {
2009-09-23 06:43:11 +00:00
margin: 5px 0;
}
2009-10-19 07:21:48 +00:00
#g-content .g-photo h2,
#g-content .g-item .g-metadata {
color: #ffffcc;
display: none;
margin-bottom: .6em;
2009-09-23 06:43:11 +00:00
}
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid .g-album {
2009-09-23 06:43:11 +00:00
background-color: #484848;
}
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid .g-album h2 span {
2009-09-23 06:43:11 +00:00
background: transparent url('../images/ico-album.png') no-repeat top left;
display: inline-block;
height: 16px;
margin-right: 5px;
width: 16px;
}
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid .g-hover-item {
2009-09-23 06:43:11 +00:00
background-color: #000;
2009-10-19 07:21:48 +00:00
position: absolute !important;
z-index: 1000 !important;
2009-09-23 06:43:11 +00:00
border: 1px solid #f9bd01;
}
2009-10-19 07:21:48 +00:00
#g-content .g-hover-item h2,
#g-content .g-hover-item .g-metadata {
2009-09-23 06:43:11 +00:00
display: block;
}
2009-10-19 07:21:48 +00:00
#g-content #g-album-grid #g-place-holder {
position: relative;
visibility: hidden;
z-index: 1;
}
2009-09-23 06:43:11 +00:00
/* Individual photo content ~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-content #g-item {
2009-09-23 06:43:11 +00:00
position: relative;
2009-10-19 07:21:48 +00:00
width: 100%;
2009-09-23 06:43:11 +00:00
}
2009-10-19 07:21:48 +00:00
#g-content #g-photo {
2009-09-23 06:43:11 +00:00
position: relative;
}
2009-10-19 07:21:48 +00:00
#g-content #g-item .g-fullsize-link img {
2009-09-23 06:43:11 +00:00
display: block;
margin: 1em auto !important;
}
2009-10-19 07:21:48 +00:00
#g-comments {
2009-09-23 06:43:11 +00:00
margin-top: 2em;
position: relative;
}
2009-10-19 07:21:48 +00:00
#g-comments ul li {
2009-09-23 06:43:11 +00:00
margin: 1em 0;
}
2009-10-19 07:21:48 +00:00
#g-comments .g-author {
border-bottom: 1px solid #ccc;
color: #999;
height: 32px;
line-height: 32px;
}
#g-comments ul li div {
2009-09-23 06:43:11 +00:00
padding: 0 8px 8px 43px;
}
2009-10-19 07:21:48 +00:00
#g-comments ul li #g-recaptcha {
2009-09-23 06:43:11 +00:00
padding: 0;
}
2009-10-19 07:21:48 +00:00
#g-comments ul li #g-recaptcha div {
2009-09-23 06:43:11 +00:00
padding: 0;
}
2009-10-19 07:21:48 +00:00
#g-comments .g-avatar {
height: 32px;
margin-right: .4em;
width: 32px;
}
#g-admin-comment-button {
2009-09-23 06:43:11 +00:00
position: absolute;
right: 0;
top: 2px;
}
2009-10-19 07:21:48 +00:00
#g-content #g-comment-form {
2009-09-23 06:43:11 +00:00
margin-top: 2em;
}
/* Footer content ~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-footer #g-credits li {
2009-09-23 06:43:11 +00:00
padding-right: 1.2em;
}
2009-10-19 07:21:48 +00:00
#g-content #g-search-results {
2009-09-23 06:43:11 +00:00
margin-top: 1em;
padding-top: 1em;
}
2009-11-10 07:32:15 +00:00
/* In-line editing ~~~~~~~~~~~~~~~~~~~~~ */
#g-in-place-edit-message {
background-color: #FFF;
}
2009-09-23 06:43:11 +00:00
/** *******************************************************************
* 5) Navigation and menus
*********************************************************************/
2009-10-19 07:21:48 +00:00
#g-site-menu,
#g-tag-cloud ul {
2009-09-23 06:43:11 +00:00
font-size: 1.2em;
}
/* Login menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-banner #g-login-menu {
2009-09-23 06:43:11 +00:00
color: #999;
float: right;
}
#g-banner #g-login-menu li {
padding-left: 1.2em;
}
2009-09-23 06:43:11 +00:00
/* Site Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-site-menu {
2009-09-23 06:43:11 +00:00
bottom: 0;
2009-10-19 07:21:48 +00:00
display: none;
2009-09-25 13:23:34 +00:00
left: 300px;
2009-09-23 06:43:11 +00:00
position: absolute;
}
2009-10-19 07:21:48 +00:00
#g-site-menu ul {
2009-09-23 06:43:11 +00:00
margin-bottom: 0 !important;
}
/* Context Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
.g-context-menu {
background-color: #fff;
2009-09-23 06:43:11 +00:00
bottom: 0;
left: 0;
2009-10-19 07:21:48 +00:00
position: absolute;
2009-09-23 06:43:11 +00:00
}
2009-10-19 07:21:48 +00:00
.g-item .g-context-menu {
2009-09-23 06:43:11 +00:00
display: none;
margin-top: 2em;
width: 100%;
}
2009-10-19 07:21:48 +00:00
#g-item .g-context-menu {
2009-09-23 06:43:11 +00:00
font-size: .7em;
}
2009-10-19 07:21:48 +00:00
#g-item .g-context-menu ul {
2009-09-23 06:43:11 +00:00
display: none;
}
2009-10-19 07:21:48 +00:00
.g-context-menu li {
2009-09-23 06:43:11 +00:00
border-left: none;
border-right: none;
border-bottom: none;
}
2009-10-19 07:21:48 +00:00
.g-context-menu li a {
2009-09-23 06:43:11 +00:00
display: block;
line-height: 1.6em;
}
2009-10-19 07:21:48 +00:00
.g-hover-item .g-context-menu {
2009-09-23 06:43:11 +00:00
display: block;
}
2009-10-19 07:21:48 +00:00
.g-hover-item .g-context-menu li {
2009-09-23 06:43:11 +00:00
text-align: left;
}
2009-10-19 07:21:48 +00:00
.g-hover-item .g-context-menu a:hover {
2009-09-23 06:43:11 +00:00
text-decoration: none;
}
/* View Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-view-menu {
2009-09-23 06:43:11 +00:00
margin-bottom: 1em;
}
2009-10-19 07:21:48 +00:00
#g-view-menu a {
2009-09-23 06:43:11 +00:00
background-repeat: no-repeat;
background-position: 50% 50%;
height: 28px !important;
width: 43px !important;
}
2009-10-19 07:21:48 +00:00
#g-view-menu #g-slideshow-link {
2009-09-23 06:43:11 +00:00
background-image: url('../images/ico-view-slideshow.png');
}
2009-10-19 07:21:48 +00:00
#g-view-menu .g-fullsize-link {
2009-09-23 06:43:11 +00:00
background-image: url('../images/ico-view-fullsize.png');
}
2009-10-19 07:21:48 +00:00
#g-view-menu #g-comments-link {
2009-09-23 06:43:11 +00:00
background-image: url('../images/ico-view-comments.png');
}
2009-10-19 07:21:48 +00:00
#g-view-menu #g-print-digibug-link {
2009-09-23 06:43:11 +00:00
background-image: url('../images/ico-print.png');
}
/* Tags and cloud ~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul {
2009-09-23 06:43:11 +00:00
text-align: justify;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li {
2009-09-23 06:43:11 +00:00
display: inline;
line-height: 1.5em;
text-align: justify;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li a {
2009-09-23 06:43:11 +00:00
text-decoration: none;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li span {
2009-09-23 06:43:11 +00:00
display: none;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size1 a {
2009-09-23 06:43:11 +00:00
color: #9cf;
font-size: 80%;
font-weight: 100;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size2 a {
2009-09-23 06:43:11 +00:00
color: #69f;
font-size: 90%;
font-weight: 300;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size3 a {
2009-09-23 06:43:11 +00:00
color: #69c;
font-size: 100%;
font-weight: 500;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size4 a {
2009-09-23 06:43:11 +00:00
color: #369;
font-size: 110%;
font-weight: 700;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size5 a {
2009-09-23 06:43:11 +00:00
color: #0e2b52;
font-size: 120%;
font-weight: 900;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size6 a {
2009-09-23 06:43:11 +00:00
color: #0e2b52;
font-size: 130%;
font-weight: 900;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li.size7 a {
2009-09-23 06:43:11 +00:00
color: #0e2b52;
font-size: 140%;
font-weight: 900;
}
2009-10-19 07:21:48 +00:00
#g-tag-cloud ul li a:hover {
2009-09-23 06:43:11 +00:00
color: #f30;
text-decoration: underline;
}
2009-10-19 07:21:48 +00:00
#g-welcome-message p {
2009-09-23 06:43:11 +00:00
padding-bottom: 1em;
}
/** *******************************************************************
2009-10-19 07:21:48 +00:00
* 6) jQuery and jQuery UI
2009-09-23 06:43:11 +00:00
*********************************************************************/
/* Superfish menu overrides ~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
2009-09-25 13:23:34 +00:00
.sf-menu a {
border-left: 1px solid #e8e8e8;
border-top: 1px solid #e8e8e8;
}
2009-10-19 07:21:48 +00:00
2009-09-25 13:23:34 +00:00
.sf-menu li {
2009-10-19 07:21:48 +00:00
color: #fff;
background-color: #333;
2009-09-25 13:23:34 +00:00
}
2009-09-23 06:43:11 +00:00
.sf-menu li li, .sf-menu li li ul li {
2009-10-19 07:21:48 +00:00
color: #fff;
background-color: #333;
2009-09-23 06:43:11 +00:00
}
.sf-menu li:hover {
2009-10-19 07:21:48 +00:00
color: #fff;
background-color: #777;
2009-09-23 06:43:11 +00:00
}
2009-10-19 07:21:48 +00:00
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
background: #777;
2009-09-23 06:43:11 +00:00
}
/* jQuery UI Dialog ~~~~~~~~~~~~~~~~~~~~~~ */
.ui-widget-overlay {
background: #000;
opacity: .7;
}
/* jQuery UI ThemeRoller buttons */
2009-10-19 07:21:48 +00:00
.g-buttonset {
2009-09-23 06:43:11 +00:00
padding-left: 1px;
}
2009-10-19 07:21:48 +00:00
.g-buttonset li {
2009-09-23 06:43:11 +00:00
float: left;
}
2009-10-19 07:21:48 +00:00
.g-buttonset .g-button {
2009-09-23 06:43:11 +00:00
margin: 0;
}
.ui-icon-left .ui-icon {
float: left;
margin-right: .2em;
}
.ui-icon-right .ui-icon {
float: right;
margin-left: .2em;
}
.ui-icon-rotate-ccw {
background-position: -192px -64px;
}
.ui-icon-rotate-cw {
background-position: -208px -64px;
}
/* STUFF THAT NEEDS A HOME */
2009-10-19 07:21:48 +00:00
#g-move ul {
2009-09-23 06:43:11 +00:00
padding-left: 1em;
}
2009-10-19 07:21:48 +00:00
#g-move .selected {
2009-09-23 06:43:11 +00:00
background: #999;
}
/* Permissions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
2009-10-19 07:21:48 +00:00
#g-edit-permissions-form {
2009-09-23 06:43:11 +00:00
clear: both;
}
2009-10-19 07:21:48 +00:00
#g-edit-permissions-form td {
background-image: none;
}
#g-edit-permissions-form fieldset {
border: 1px solid #ccc;
2009-09-23 06:43:11 +00:00
padding: 0;
}
2009-10-19 07:21:48 +00:00
#g-permissions .g-denied,
#g-permissions .g-allowed {
2009-09-23 06:43:11 +00:00
text-align: center;
vertical-align: middle;
}
2009-10-19 07:21:48 +00:00
#g-permissions .g-denied {
2009-09-23 06:43:11 +00:00
background-color: #fcc;
}
2009-10-19 07:21:48 +00:00
#g-permissions .g-allowed {
2009-09-23 06:43:11 +00:00
background-color: #cfc;
}
/*************** STUFF THAT NEEDS A HOME ****************/
2009-10-19 07:21:48 +00:00
#g-admin-g2-import-notes {
2009-09-23 06:43:11 +00:00
padding-bottom: 20px;
}
2009-10-19 07:21:48 +00:00
#g-admin-g2-import-details {
2009-09-23 06:43:11 +00:00
padding-top: 20px;
}
2009-10-19 07:21:48 +00:00
#g-admin-g2-import-details .g-warning {
2009-09-23 06:43:11 +00:00
margin-top: 4px;
}
2009-10-19 07:21:48 +00:00
#g-admin-g2-import-details .g-info {
2009-09-23 06:43:11 +00:00
padding: 2px;
border: 1px solid #999;
margin-bottom: 10px;
}
2009-10-19 07:21:48 +00:00
#g-admin-g2-import-notes p,
#g-admin-g2-import-details .g-info p {
2009-09-23 06:43:11 +00:00
padding: 0;
margin: 0;
}
2009-10-19 07:21:48 +00:00
#g-admin-g2-import-notes ul li,
#g-admin-g2-import .g-info ul li {
2009-09-23 06:43:11 +00:00
padding-left: 0;
margin-left: 20px;
list-style-type: disc;
}
/* Right to left styles ~~~~~~~~~~~~~~~~~~~~ */
.rtl {
direction: rtl;
}
.rtl caption,
.rtl th,
2009-10-19 07:21:48 +00:00
.rtl #g-dialog {
2009-09-23 06:43:11 +00:00
text-align: right;
}
2009-10-19 07:21:48 +00:00
.rtl .g-right,
.rtl #g-header #g-quick-search-form,
.rtl #g-header #g-login-menu,
2009-09-23 06:43:11 +00:00
.rtl .ui-icon-right .ui-icon {
clear: left;
float: left;
}
2009-10-19 07:21:48 +00:00
.rtl .g-left,
.rtl #g-dialog .g-cancel,
2009-09-23 06:43:11 +00:00
.rtl form ul ul li,
.rtl input[type="submit"],
.rtl input[type="reset"],
2009-10-19 07:21:48 +00:00
.rtl .g-short-form li,
.rtl #g-header #g-logo img,
.rtl #g-content #g-album-grid .g-item,
.rtl #g-site-menu,
.rtl .g-breadcrumbs li,
.rtl .g-pager li,
.rtl .g-buttonset li,
2009-09-23 06:43:11 +00:00
.rtl .ui-icon-left .ui-icon {
float: right;
}