2009-01-02 20:09:28 +00:00
|
|
|
/**
|
2009-11-01 22:15:06 -07:00
|
|
|
* Gallery 3 Admin Wind Theme Screen Styles
|
2009-01-02 20:09:28 +00:00
|
|
|
*
|
2009-07-22 14:27:57 -07:00
|
|
|
* @requires YUI reset, font, grids CSS
|
2009-01-25 21:14:44 +00:00
|
|
|
*
|
2009-07-22 14:27:57 -07:00
|
|
|
* Sheet organization:
|
|
|
|
|
* 1) Basic HTML elements
|
2009-10-07 00:21:23 -06:00
|
|
|
* 2) Reusable content blocks
|
|
|
|
|
* 3) Page layout containers
|
|
|
|
|
* 4) Content blocks in specific layout containers
|
|
|
|
|
* 5) Navigation and menus
|
|
|
|
|
* 6) jQuery and jQuery UI
|
|
|
|
|
* 7) Right-to-left language styles
|
2009-10-25 23:58:54 -06:00
|
|
|
*
|
2009-11-08 21:46:09 -07:00
|
|
|
* @todo Review g-buttonset-vertical
|
2009-01-02 20:09:28 +00:00
|
|
|
*/
|
2009-01-02 07:09:25 +00:00
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
/** *******************************************************************
|
2009-02-01 18:37:45 +00:00
|
|
|
* 1) Basic HTML elements
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
body, html {
|
|
|
|
|
background-color: #ccc;
|
|
|
|
|
font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
|
|
|
|
}
|
2009-01-13 04:56:29 +00:00
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
p {
|
2008-12-19 01:54:53 +00:00
|
|
|
margin-bottom: 1em;
|
2008-12-15 01:48:34 +00:00
|
|
|
}
|
2009-01-02 07:09:25 +00:00
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
em {
|
|
|
|
|
font-style: oblique;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, strong, th {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-26 23:36:46 -06:00
|
|
|
#g-dialog h1 {
|
2009-07-22 14:27:57 -07:00
|
|
|
font-size: 1.1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
font-size: 1.4em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block h2 {
|
2009-07-22 14:27:57 -07:00
|
|
|
font-size: 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block li {
|
2009-07-22 14:27:57 -07:00
|
|
|
margin-bottom: .6em;
|
2008-12-15 01:48:34 +00:00
|
|
|
}
|
2009-01-02 07:09:25 +00:00
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
h3 {
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Links ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
|
|
|
|
a,
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-menu a,
|
2009-09-30 22:49:36 -06:00
|
|
|
#g-dialog a,
|
2009-09-30 08:04:49 -06:00
|
|
|
.g-button,
|
|
|
|
|
.g-button:hover,
|
|
|
|
|
.g-button:active,
|
2009-08-31 23:51:27 -06:00
|
|
|
a.ui-state-hover,
|
|
|
|
|
input.ui-state-hover,
|
|
|
|
|
button.ui-state-hover {
|
2009-07-22 14:27:57 -07:00
|
|
|
color: #5382BF !important;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
-moz-outline-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover,
|
2009-09-30 22:49:36 -06:00
|
|
|
#g-dialog a:hover {
|
2009-07-22 14:27:57 -07:00
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-menu a:hover {
|
2009-07-22 14:27:57 -07:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-06 21:35:32 -07:00
|
|
|
/* Forms ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-11-07 00:13:31 -07:00
|
|
|
fieldset {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-08 23:13:02 -07:00
|
|
|
#g-content form ul li {
|
|
|
|
|
padding: .4em 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-06 21:35:32 -07:00
|
|
|
#g-dialog form {
|
|
|
|
|
width: 270px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-07 00:13:31 -07:00
|
|
|
#g-dialog fieldset {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
/* Tables ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content table {
|
2009-11-07 15:34:34 -07:00
|
|
|
margin: .6em 0 2em 0;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
caption,
|
|
|
|
|
th {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
th,
|
|
|
|
|
td {
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
padding: .5em;
|
2009-10-18 20:22:10 -06:00
|
|
|
vertical-align: middle;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-18 20:22:10 -06:00
|
|
|
th {
|
2009-11-08 09:00:49 -07:00
|
|
|
vertical-align: bottom;
|
2009-10-18 20:22:10 -06:00
|
|
|
white-space: nowrap;
|
2009-08-29 14:01:04 -06:00
|
|
|
}
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
/** *******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 2) Reusable content blocks
|
2009-07-22 14:27:57 -07:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
2009-11-07 15:34:34 -07:00
|
|
|
.g-block,
|
|
|
|
|
#g-content #g-admin-dashboard .g-block {
|
2009-09-01 23:22:06 -06:00
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-block h2 {
|
2009-07-22 14:27:57 -07:00
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
padding: .3em .8em;
|
|
|
|
|
}
|
2009-06-06 15:24:14 -07:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-block-content {
|
2009-07-22 14:27:57 -07:00
|
|
|
margin-top: 1em;
|
2009-06-06 15:24:14 -07:00
|
|
|
}
|
|
|
|
|
|
2009-11-07 14:03:10 -07:00
|
|
|
#g-content .g-block {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-07 00:21:23 -06:00
|
|
|
#g-sidebar .g-block-content {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-08 22:46:26 -07:00
|
|
|
#g-content .g-selected,
|
|
|
|
|
#g-content .g-available .g-block {
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
padding: .8em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-selected img,
|
|
|
|
|
.g-available .g-block img {
|
2009-09-01 23:22:06 -06:00
|
|
|
float: left;
|
|
|
|
|
margin: 0 1em 1em 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-selected {
|
2009-09-01 23:22:06 -06:00
|
|
|
background: #e8e8e8;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-available .g-installed-toolkit:hover {
|
2009-09-01 23:22:06 -06:00
|
|
|
cursor: pointer;
|
|
|
|
|
background: #eee;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-available .g-button {
|
2009-09-01 23:22:06 -06:00
|
|
|
width: 96%;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-selected .g-button {
|
2009-09-01 23:22:06 -06:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-unavailable {
|
2009-09-01 23:22:06 -06:00
|
|
|
border-color: #999;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-25 23:07:56 -06:00
|
|
|
.g-info td {
|
2009-09-02 22:35:54 -06:00
|
|
|
background-color: transparent;
|
2009-10-25 23:07:56 -06:00
|
|
|
background-image: none;
|
2009-02-15 22:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-25 23:07:56 -06:00
|
|
|
.g-success td {
|
2009-09-02 22:35:54 -06:00
|
|
|
background-color: transparent;
|
2009-10-25 23:07:56 -06:00
|
|
|
background-image: none;
|
2009-09-02 22:35:54 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-error td {
|
2009-09-02 22:35:54 -06:00
|
|
|
background-color: #f6cbca;
|
2009-10-25 23:07:56 -06:00
|
|
|
background-image: none;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-warning td {
|
2009-09-02 22:35:54 -06:00
|
|
|
background-color: #fcf9ce;
|
2009-10-25 23:07:56 -06:00
|
|
|
background-image: none;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-module-status.g-info,
|
|
|
|
|
#g-log-entries .g-info,
|
|
|
|
|
.g-module-status.g-success,
|
|
|
|
|
#g-log-entries .g-success {
|
2009-09-27 23:14:58 -06:00
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
/*** ******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 3) Page layout containers
|
2009-07-22 14:27:57 -07:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
2009-11-01 19:11:58 -07:00
|
|
|
/* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
|
|
|
|
#g-header #g-login-menu {
|
|
|
|
|
margin-top: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
/* View container ~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-view {
|
2009-07-22 14:27:57 -07:00
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-bottom: none;
|
2009-09-01 23:22:06 -06:00
|
|
|
min-width: 974px !important;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Layout containers ~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-header {
|
2009-07-22 14:27:57 -07:00
|
|
|
background-color: #e8e8e8;
|
2009-09-01 23:22:06 -06:00
|
|
|
border-bottom: 1px solid #ccc;
|
2009-07-22 14:27:57 -07:00
|
|
|
font-size: .8em;
|
2009-09-01 23:22:06 -06:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
position: relative;
|
2009-01-10 19:33:01 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content {
|
2009-09-01 23:22:06 -06:00
|
|
|
font-size: 1.1em;
|
2009-11-01 19:11:58 -07:00
|
|
|
padding: 0 2em;
|
2009-09-01 23:22:06 -06:00
|
|
|
width: 96%;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar {
|
2009-02-20 07:10:20 +00:00
|
|
|
background-color: #fff;
|
2009-07-22 14:27:57 -07:00
|
|
|
font-size: .9em;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
width: 220px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-footer {
|
2009-07-22 14:27:57 -07:00
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
|
font-size: .8em;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** *******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 4) Content blocks in specific layout containers
|
2009-07-22 14:27:57 -07:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
|
|
/* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-header #g-logo {
|
2009-09-01 23:22:06 -06:00
|
|
|
background: transparent url('../../../lib/images/logo.png') no-repeat 0 .5em;
|
|
|
|
|
color: #A5A5A5 !important;
|
|
|
|
|
display: block;
|
2009-10-27 23:18:45 -06:00
|
|
|
height: 65px;
|
2009-09-01 23:22:06 -06:00
|
|
|
padding-top: 5px;
|
|
|
|
|
width: 105px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-header #g-logo:hover {
|
2009-09-01 23:22:06 -06:00
|
|
|
color: #f60 !important;
|
|
|
|
|
text-decoration: none;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content .g-block h2 {
|
2009-07-22 14:27:57 -07:00
|
|
|
background-color: transparent;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block-content {
|
2009-07-22 14:27:57 -07:00
|
|
|
padding-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-block .ui-dialog-titlebar {
|
2009-09-01 23:22:06 -06:00
|
|
|
margin: -1em -1em 0;
|
2009-01-25 06:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block h2 {
|
2009-09-01 23:22:06 -06:00
|
|
|
background: none;
|
|
|
|
|
}
|
2009-07-22 14:27:57 -07:00
|
|
|
|
2009-10-26 23:36:46 -06:00
|
|
|
/* Photo stream ~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-photo-stream {
|
2009-09-01 23:22:06 -06:00
|
|
|
background-color: #e8e8e8;
|
2009-06-06 15:24:14 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-photo-stream .g-block-content ul {
|
2009-09-01 23:22:06 -06:00
|
|
|
border-right: 1px solid #e8e8e8;
|
|
|
|
|
height: 135px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
overflow: -moz-scrollbars-horizontal; /* for FF */
|
|
|
|
|
overflow-x: scroll; /* scroll horizontal */
|
|
|
|
|
overflow-y: hidden; /* Hide vertical*/
|
|
|
|
|
}
|
2009-07-22 14:27:57 -07:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-photo-stream .g-item {
|
2009-09-01 23:22:06 -06:00
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
|
border-right-color: #ccc;
|
|
|
|
|
border-bottom-color: #ccc;
|
2009-01-25 06:55:24 +00:00
|
|
|
float: left;
|
2009-09-01 23:22:06 -06:00
|
|
|
height: 90px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 90px;
|
2009-01-25 06:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content .g-item {
|
2009-09-01 23:22:06 -06:00
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
|
border-right-color: #ccc;
|
|
|
|
|
border-bottom-color: #ccc;
|
|
|
|
|
height: 90px;
|
|
|
|
|
padding: 14px 8px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 90px;
|
2009-01-25 06:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-26 23:36:46 -06:00
|
|
|
/* Graphics settings ~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-graphics .g-available .g-block {
|
2009-09-01 23:22:06 -06:00
|
|
|
clear: none;
|
|
|
|
|
float: left;
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
width: 30%;
|
2009-01-25 21:14:44 +00:00
|
|
|
}
|
2009-07-22 14:27:57 -07:00
|
|
|
|
2009-10-26 23:36:46 -06:00
|
|
|
/* Appearance settings ~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-theme,
|
|
|
|
|
#g-admin-theme {
|
2009-09-01 23:22:06 -06:00
|
|
|
float: left;
|
|
|
|
|
width: 48%;
|
2009-02-26 03:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-theme {
|
2009-09-01 23:22:06 -06:00
|
|
|
margin-right: 1em;
|
2009-05-13 03:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-18 20:22:10 -06:00
|
|
|
/* Block admin ~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2009-09-30 14:25:33 -07:00
|
|
|
|
2009-10-20 23:20:38 -06:00
|
|
|
.g-admin-blocks-list {
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0 2em 2em 0;
|
2009-10-18 23:38:27 -06:00
|
|
|
width: 30%;
|
2009-09-30 14:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-20 23:20:38 -06:00
|
|
|
.g-admin-blocks-list div:last-child {
|
|
|
|
|
border: .1em solid;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.g-admin-blocks-list ul {
|
|
|
|
|
height: 98%;
|
|
|
|
|
margin: .1em .1em;
|
|
|
|
|
padding: .1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.g-admin-blocks-list ul li.g-draggable {
|
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
margin: .5em;
|
|
|
|
|
padding: .3em .8em;
|
2009-09-30 14:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
2009-11-06 22:19:01 -08:00
|
|
|
/* In-line editing ~~~~~~~~~~~~~~~~~~~~~~ */
|
2009-11-07 00:05:49 -08:00
|
|
|
#g-in-place-edit-message {
|
2009-11-05 21:35:40 -08:00
|
|
|
background-color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-01 23:22:06 -06:00
|
|
|
/** *******************************************************************
|
|
|
|
|
* 5) Navigation and menus
|
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
|
|
/* Site Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-admin-menu {
|
2009-09-01 23:22:06 -06:00
|
|
|
bottom: 0;
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
left: 140px;
|
|
|
|
|
position: absolute;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-admin-menu ul {
|
2009-09-01 23:22:06 -06:00
|
|
|
margin-bottom: 0;
|
2009-07-22 14:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
/** *******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 6) jQuery and jQuery UI
|
2009-01-25 21:14:44 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
/* Superfish menu overrides ~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-25 21:03:33 -06:00
|
|
|
.sf-menu li li,
|
|
|
|
|
.sf-menu li li ul li {
|
2009-07-22 14:27:57 -07:00
|
|
|
background-color: #bdd2ff;
|
2009-01-25 21:14:44 +00:00
|
|
|
}
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
.sf-menu li:hover {
|
|
|
|
|
background-color: #dfe9ff;
|
2009-01-25 21:14:44 +00:00
|
|
|
}
|
|
|
|
|
|
2009-07-22 14:27:57 -07:00
|
|
|
/* jQuery UI Dialog ~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-07 00:21:23 -06:00
|
|
|
#g-admin-dashboard .ui-state-highlight,
|
|
|
|
|
#g-sidebar .ui-state-highlight {
|
|
|
|
|
height: 2em;
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-buttonset-vertical a {
|
2009-09-01 23:22:06 -06:00
|
|
|
width: 8em !important;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-dashboard .ui-dialog-titlebar,
|
|
|
|
|
#g-admin-dashboard-sidebar .ui-dialog-titlebar {
|
2009-09-01 23:22:06 -06:00
|
|
|
padding: .2em .4em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-07 21:52:45 -06:00
|
|
|
/** *******************************************************************
|
|
|
|
|
* 7) Right to left styles
|
|
|
|
|
*********************************************************************/
|
2009-07-22 14:27:57 -07:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.rtl #g-content #g-album-grid .g-item,
|
2009-10-07 21:52:45 -06:00
|
|
|
.rtl #g-site-theme,
|
|
|
|
|
.rtl #g-admin-theme,
|
|
|
|
|
.rtl .g-selected img,
|
|
|
|
|
.rtl .g-available .g-block img,
|
|
|
|
|
.rtl #g-content #g-photo-stream .g-item,
|
|
|
|
|
.rtl li.g-group,
|
2009-10-28 00:15:08 -06:00
|
|
|
.rtl #g-server-add-admin {
|
2009-07-22 14:27:57 -07:00
|
|
|
float: right;
|
2009-06-10 02:07:47 -04:00
|
|
|
}
|
2009-10-07 21:52:45 -06:00
|
|
|
|
|
|
|
|
.rtl #g-admin-graphics .g-available .g-block {
|
|
|
|
|
float: right;
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
margin-right: 0em;
|
|
|
|
|
}
|
2009-11-01 19:11:58 -07:00
|
|
|
|
|
|
|
|
.rtl #g-site-admin-menu {
|
|
|
|
|
left: auto;
|
|
|
|
|
right: 150px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rtl #g-header #g-login-menu li {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
padding-right: 1.2em;
|
|
|
|
|
}
|