2008-11-03 05:53:20 +00:00
|
|
|
/**
|
2008-12-30 00:50:23 +00:00
|
|
|
* Gallery 3 Default Theme Screen Styles
|
2008-11-03 05:53:20 +00:00
|
|
|
*
|
2008-11-23 04:34:19 +00:00
|
|
|
* @requires YUI reset, font, grids CSS
|
2008-11-03 05:53:20 +00:00
|
|
|
*
|
|
|
|
|
* Sheet organization:
|
2009-06-25 08:14:34 -07:00
|
|
|
* 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) Browser hacks
|
|
|
|
|
* 7) jQuery and jQuery UI
|
|
|
|
|
* 8) Right-to-left language styles
|
2008-11-03 05:53:20 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-11-23 04:34:19 +00:00
|
|
|
/** *******************************************************************
|
|
|
|
|
* 1) Basic HTML elements
|
2008-12-30 00:50:23 +00:00
|
|
|
**********************************************************************/
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2008-11-03 05:53:20 +00:00
|
|
|
body, html {
|
|
|
|
|
background-color: #ccc;
|
2008-11-23 04:34:19 +00:00
|
|
|
font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-21 01:56:33 +00:00
|
|
|
p {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
em {
|
|
|
|
|
font-style: oblique;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-25 00:06:59 -06:00
|
|
|
h1, h2, h3, h4, h5, strong, th {
|
2008-11-21 08:35:53 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2008-11-03 05:53:20 +00:00
|
|
|
h1 {
|
2009-01-02 07:09:25 +00:00
|
|
|
font-size: 1.7em;
|
2008-11-21 08:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-search-results h1 {
|
2009-02-13 03:21:19 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-progress h1 {
|
2009-06-25 00:06:59 -06:00
|
|
|
font-size: 1.1em;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
h2 {
|
2009-01-02 07:09:25 +00:00
|
|
|
font-size: 1.4em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block h2 {
|
2009-01-02 07:09:25 +00:00
|
|
|
font-size: 1.2em;
|
2008-11-21 08:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block li {
|
2009-06-28 17:53:20 -06:00
|
|
|
margin-bottom: .6em;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
h3 {
|
2009-01-02 07:09:25 +00:00
|
|
|
font-size: 1.2em;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-10 02:16:09 +00:00
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
/* Links ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-21 01:56:33 +00:00
|
|
|
|
2009-02-05 01:10:34 +00:00
|
|
|
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 {
|
|
|
|
|
color: #5382bf !important;
|
|
|
|
|
cursor: pointer !important;
|
2008-11-07 07:31:58 +00:00
|
|
|
text-decoration: none;
|
2008-12-26 04:27:39 +00:00
|
|
|
-moz-outline-style: none;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-02-05 01:10:34 +00:00
|
|
|
a:hover,
|
2009-09-30 22:49:36 -06:00
|
|
|
#g-dialog a:hover {
|
2008-11-07 07:31:58 +00:00
|
|
|
text-decoration: underline;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-menu a:hover {
|
2009-05-30 16:02:27 -06:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-dialog #g-action-status li {
|
2009-09-09 16:18:00 -07:00
|
|
|
width: 400px;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
/* Tables ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-01-02 21:21:54 +00:00
|
|
|
table {
|
2009-01-11 22:49:54 +00:00
|
|
|
width: 100%;
|
2009-01-02 21:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content table {
|
2009-01-11 22:49:54 +00:00
|
|
|
margin: 1em 0;
|
2009-01-02 21:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-06 08:33:39 +00:00
|
|
|
caption,
|
2009-01-02 21:21:54 +00:00
|
|
|
th {
|
2008-11-07 07:31:58 +00:00
|
|
|
text-align: left;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-01-06 08:33:39 +00:00
|
|
|
th,
|
2009-01-02 21:21:54 +00:00
|
|
|
td {
|
2009-02-06 02:10:00 +00:00
|
|
|
border: none;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
padding: .5em;
|
2009-01-02 21:21:54 +00:00
|
|
|
vertical-align: top;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-29 21:30:30 +00:00
|
|
|
/* Forms ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
|
border: 1px solid #ccc;
|
2009-03-16 05:50:05 +00:00
|
|
|
padding-bottom: .8em;
|
2008-11-29 21:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner fieldset,
|
|
|
|
|
#g-sidebar fieldset,
|
|
|
|
|
.g-short-form fieldset {
|
2009-01-11 22:49:54 +00:00
|
|
|
border: none;
|
2009-01-02 21:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-29 21:30:30 +00:00
|
|
|
legend {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner legend,
|
|
|
|
|
#g-sidebar legend,
|
|
|
|
|
#g-content #g-search-form legend,
|
2009-06-25 00:06:59 -06:00
|
|
|
input[type="hidden"],
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-short-form label {
|
2009-01-02 21:21:54 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-29 21:30:30 +00:00
|
|
|
label {
|
|
|
|
|
cursor: help;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="text"],
|
2009-01-09 07:33:22 +00:00
|
|
|
input[type="password"] {
|
2008-12-15 02:45:50 +00:00
|
|
|
width: 50%;
|
2008-11-29 21:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="text"],
|
|
|
|
|
input[type="password"],
|
2009-02-06 06:34:47 +00:00
|
|
|
textarea {
|
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
|
border-top-color: #ccc;
|
|
|
|
|
border-left-color: #ccc;
|
|
|
|
|
color: #333;
|
2008-11-29 21:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
textarea {
|
2009-01-02 21:21:54 +00:00
|
|
|
width: 100%;
|
2008-11-29 21:30:30 +00:00
|
|
|
height: 12em;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-01 01:55:50 +00:00
|
|
|
input:focus,
|
|
|
|
|
textarea:focus,
|
|
|
|
|
option:focus {
|
|
|
|
|
background-color: #ffc;
|
2009-02-07 19:28:26 +00:00
|
|
|
color: #000;
|
2008-12-01 01:55:50 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-29 21:30:30 +00:00
|
|
|
/* 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,
|
2009-01-02 07:09:25 +00:00
|
|
|
select,
|
2008-11-29 21:30:30 +00:00
|
|
|
textarea {
|
|
|
|
|
display: block;
|
|
|
|
|
clear: both;
|
2009-01-02 21:21:54 +00:00
|
|
|
padding: .2em;
|
2008-11-29 21:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-22 08:05:15 +00:00
|
|
|
input[type="submit"],
|
|
|
|
|
input[type="reset"] {
|
2009-05-30 16:02:27 -06:00
|
|
|
display: inline;
|
|
|
|
|
clear: none;
|
2009-02-22 08:05:15 +00:00
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-01 01:55:50 +00:00
|
|
|
/* Form validation ~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06: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 {
|
2008-12-01 01:55:50 +00:00
|
|
|
border: 2px solid red;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/** *******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 2) Reusable content blocks
|
2008-12-30 00:50:23 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-block h2 {
|
2009-01-03 01:11:20 +00:00
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
padding: .3em .8em;
|
2008-12-13 23:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-block-content {
|
2009-01-03 01:11:20 +00:00
|
|
|
margin-top: 1em;
|
2008-11-23 04:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/* Inline layout (forms, lists) ~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-short-form li {
|
2008-12-30 00:50:23 +00:00
|
|
|
float: left;
|
2009-02-06 06:34:47 +00:00
|
|
|
padding: .4em 0;
|
2008-12-30 00:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-short-form input[type="text"] {
|
2009-02-06 06:34:47 +00:00
|
|
|
color: #666;
|
|
|
|
|
padding: .3em .6em;
|
|
|
|
|
width: 11em;
|
2008-12-30 00:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*** ******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 3) Page layout containers
|
2008-12-30 00:50:23 +00:00
|
|
|
*********************************************************************/
|
2008-11-03 05:53:20 +00:00
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
/* View container ~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-view {
|
2008-11-03 05:53:20 +00:00
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #ccc;
|
2008-12-13 23:38:49 +00:00
|
|
|
border-bottom: none;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
/* Layout containers ~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-03 05:53:20 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-header {
|
2009-07-26 10:54:21 -06:00
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner {
|
2009-06-22 13:25:55 -07:00
|
|
|
background-color: #e8e8e8;
|
2009-07-26 10:54:21 -06:00
|
|
|
border-bottom: 1px solid #ccc;
|
2008-12-30 00:50:23 +00:00
|
|
|
font-size: .8em;
|
2009-08-31 23:25:42 -06:00
|
|
|
min-height: 5em;
|
2009-07-26 10:54:21 -06:00
|
|
|
padding: 1em 20px;
|
|
|
|
|
position: relative;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content {
|
2008-12-30 00:50:23 +00:00
|
|
|
font-size: 1.2em;
|
2008-12-13 23:38:49 +00:00
|
|
|
padding-left: 20px;
|
2009-07-26 10:54:21 -06:00
|
|
|
position: relative;
|
2009-01-03 19:09:32 +00:00
|
|
|
width: 696px;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar {
|
2008-12-30 00:50:23 +00:00
|
|
|
font-size: .9em;
|
2008-12-13 23:02:16 +00:00
|
|
|
padding: 0 20px;
|
2008-11-21 08:35:53 +00:00
|
|
|
width: 220px;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-footer {
|
2009-06-22 13:25:55 -07:00
|
|
|
background-color: #e8e8e8;
|
2008-11-03 05:53:20 +00:00
|
|
|
border-top: 1px solid #ccc;
|
2008-12-30 00:50:23 +00:00
|
|
|
font-size: .8em;
|
2008-12-13 23:02:16 +00:00
|
|
|
margin-top: 20px;
|
|
|
|
|
padding: 10px 20px;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/** *******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 4) Content blocks in specific layout containers
|
2008-12-30 00:50:23 +00:00
|
|
|
*********************************************************************/
|
2008-11-10 07:47:08 +00:00
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner #g-logo img {
|
2009-07-26 10:54:21 -06:00
|
|
|
margin: 0;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner #g-quick-search-form {
|
2009-02-06 06:34:47 +00:00
|
|
|
clear: right;
|
2008-12-30 00:50:23 +00:00
|
|
|
float: right;
|
2009-07-26 10:54:21 -06:00
|
|
|
margin-top: 1em;
|
2009-02-06 06:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner #g-quick-search-form input[type='text'] {
|
2009-02-06 06:34:47 +00:00
|
|
|
width: 17em;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content .g-block h2 {
|
2009-01-03 01:11:20 +00:00
|
|
|
background-color: transparent;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-sidebar .g-block-content {
|
2009-01-11 22:49:54 +00:00
|
|
|
padding-left: 1em;
|
2009-01-03 01:11:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-01 22:54:35 +00:00
|
|
|
/* Album content ~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid {
|
2009-01-01 22:54:35 +00:00
|
|
|
margin: 1em 0;
|
2009-08-08 01:14:22 -06:00
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid .g-item {
|
2009-08-08 01:14:22 -06:00
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #fff;
|
2008-11-07 07:31:58 +00:00
|
|
|
float: left;
|
2008-12-30 00:50:23 +00:00
|
|
|
font-size: .7em;
|
2009-08-08 01:14:22 -06:00
|
|
|
padding: .6em 8px;
|
2009-07-11 00:40:57 -06:00
|
|
|
position: relative;
|
2008-11-09 20:07:47 +00:00
|
|
|
text-align: center;
|
2008-12-28 07:33:09 +00:00
|
|
|
width: 213px;
|
2009-08-08 01:14:22 -06:00
|
|
|
z-index: 1;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid .g-item h2 {
|
2008-11-10 02:16:09 +00:00
|
|
|
margin: 5px 0;
|
|
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content .g-photo h2,
|
|
|
|
|
#g-content .g-item .g-metadata {
|
2009-08-08 01:14:22 -06:00
|
|
|
display: none;
|
2009-09-26 15:44:34 -06:00
|
|
|
margin-bottom: .6em;
|
2009-08-08 01:14:22 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid .g-album {
|
2008-12-28 07:33:09 +00:00
|
|
|
background-color: #e8e8e8;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid .g-album h2 span {
|
2009-08-09 12:46:17 -06:00
|
|
|
background: transparent url('../images/ico-album.png') no-repeat top left;
|
2009-05-22 00:12:37 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid .g-hover-item {
|
2009-08-08 01:14:22 -06:00
|
|
|
border: 1px solid #000;
|
2009-09-26 15:44:34 -06:00
|
|
|
position: absolute !important;
|
|
|
|
|
z-index: 1000 !important;
|
2009-08-08 01:14:22 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content .g-hover-item h2,
|
|
|
|
|
#g-content .g-hover-item .g-metadata {
|
2009-08-08 01:14:22 -06:00
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-album-grid #g-place-holder {
|
2009-09-26 15:44:34 -06:00
|
|
|
position: relative;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/* Individual photo content ~~~~~~~~~~~~~~ */
|
2008-11-03 05:53:20 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-item {
|
2009-08-09 23:32:53 -06:00
|
|
|
position: relative;
|
2009-10-07 00:21:23 -06:00
|
|
|
width: 100%;
|
2009-02-22 02:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-photo {
|
2009-07-11 00:40:57 -06:00
|
|
|
position: relative;
|
2009-03-31 05:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-item .g-fullsize-link img {
|
2009-02-22 02:09:48 +00:00
|
|
|
display: block;
|
2009-10-09 12:07:27 -06:00
|
|
|
margin: 1em auto;
|
2009-02-22 02:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments {
|
2008-12-13 23:38:49 +00:00
|
|
|
margin-top: 2em;
|
2009-08-28 13:44:01 -07:00
|
|
|
position: relative;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments ul li {
|
2008-12-13 23:38:49 +00:00
|
|
|
margin: 1em 0;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments .g-author {
|
2009-02-12 07:07:11 +00:00
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
color: #999;
|
2009-01-03 01:11:20 +00:00
|
|
|
height: 32px;
|
|
|
|
|
line-height: 32px;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments ul li div {
|
2009-02-12 07:07:11 +00:00
|
|
|
padding: 0 8px 8px 43px;
|
2009-01-03 01:11:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments ul li #g-recaptcha {
|
2009-01-26 16:12:57 +00:00
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments ul li #g-recaptcha div {
|
2009-01-26 16:12:57 +00:00
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comments .g-avatar {
|
2009-02-12 07:07:11 +00:00
|
|
|
height: 32px;
|
2009-01-11 22:49:54 +00:00
|
|
|
margin-right: .4em;
|
2009-02-12 07:07:11 +00:00
|
|
|
width: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-comment-button {
|
2009-08-28 13:44:01 -07:00
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-comment-form {
|
2009-02-12 07:07:11 +00:00
|
|
|
margin-top: 2em;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/* Footer content ~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-12-25 19:59:15 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner #g-login-menu li,
|
|
|
|
|
#g-footer #g-credits li {
|
2008-11-28 09:46:29 +00:00
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner #g-login-menu li {
|
2009-05-30 23:20:18 -06:00
|
|
|
padding-left: 1.2em;
|
2008-11-28 09:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-footer #g-credits li {
|
2009-05-30 23:20:18 -06:00
|
|
|
padding-right: 1.2em;
|
2008-11-28 09:46:29 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-content #g-search-results {
|
2009-02-13 03:21:19 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
|
padding-top: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-23 04:34:19 +00:00
|
|
|
/** *******************************************************************
|
2008-12-30 00:50:23 +00:00
|
|
|
* 5) Navigation and menus
|
|
|
|
|
*********************************************************************/
|
2008-12-29 06:12:00 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-menu,
|
|
|
|
|
#g-tag-cloud ul {
|
2009-02-15 03:18:48 +00:00
|
|
|
font-size: 1.2em;
|
2008-12-29 06:12:00 +00:00
|
|
|
}
|
2008-11-07 07:31:58 +00:00
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
/* Login menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-07 07:31:58 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-banner #g-login-menu {
|
2009-03-12 04:46:14 +00:00
|
|
|
color: #999;
|
2008-11-09 23:03:50 +00:00
|
|
|
float: right;
|
2008-11-29 21:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
2008-11-21 08:35:53 +00:00
|
|
|
/* Site Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2008-11-07 07:31:58 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-menu {
|
2009-07-26 10:54:21 -06:00
|
|
|
bottom: 0;
|
2009-09-26 15:44:34 -06:00
|
|
|
display: none;
|
2009-07-26 10:54:21 -06:00
|
|
|
left: 140px;
|
|
|
|
|
position: absolute;
|
2008-11-07 07:31:58 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-site-menu ul {
|
2009-07-26 10:54:21 -06:00
|
|
|
margin-bottom: 0 !important;
|
2008-12-05 06:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
2009-08-08 13:20:00 -06:00
|
|
|
/* Context Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
2009-07-11 00:40:57 -06:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-context-menu {
|
2009-09-26 15:44:34 -06:00
|
|
|
background-color: #fff;
|
2009-07-11 00:40:57 -06:00
|
|
|
bottom: 0;
|
2009-07-11 23:14:26 -06:00
|
|
|
left: 0;
|
2009-09-26 15:44:34 -06:00
|
|
|
position: absolute;
|
2009-08-09 23:32:53 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-item .g-context-menu {
|
2009-08-09 23:32:53 -06:00
|
|
|
display: none;
|
2009-08-09 12:46:17 -06:00
|
|
|
margin-top: 2em;
|
2009-07-11 23:14:26 -06:00
|
|
|
width: 100%;
|
2009-07-11 00:40:57 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-item .g-context-menu {
|
2009-08-09 23:32:53 -06:00
|
|
|
font-size: .7em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-item .g-context-menu ul {
|
2009-08-09 23:32:53 -06:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-context-menu li {
|
2009-07-11 23:14:26 -06:00
|
|
|
border-left: none;
|
|
|
|
|
border-right: none;
|
2009-07-12 22:41:57 -06:00
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-context-menu li a {
|
2009-08-11 00:33:15 -06:00
|
|
|
display: block;
|
2009-08-08 13:20:00 -06:00
|
|
|
line-height: 1.6em;
|
2009-07-11 00:40:57 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-hover-item .g-context-menu {
|
2009-08-08 01:14:22 -06:00
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-hover-item .g-context-menu li {
|
2009-08-08 01:14:22 -06:00
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-hover-item .g-context-menu a:hover {
|
2009-07-11 23:14:26 -06:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2009-07-12 16:07:16 -06:00
|
|
|
|
2009-07-11 00:40:57 -06:00
|
|
|
/* View Menu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-view-menu {
|
2009-02-12 04:25:43 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-view-menu a {
|
2008-12-13 23:38:49 +00:00
|
|
|
background-repeat: no-repeat;
|
2009-02-12 04:25:43 +00:00
|
|
|
background-position: 50% 50%;
|
|
|
|
|
height: 28px !important;
|
|
|
|
|
width: 43px !important;
|
2008-12-09 06:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-view-menu #g-slideshow-link {
|
2008-12-13 23:38:49 +00:00
|
|
|
background-image: url('../images/ico-view-slideshow.png');
|
2008-12-09 06:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-view-menu .g-fullsize-link {
|
2008-12-13 23:38:49 +00:00
|
|
|
background-image: url('../images/ico-view-fullsize.png');
|
2008-12-05 06:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-view-menu #g-comments-link {
|
2009-01-03 19:09:32 +00:00
|
|
|
background-image: url('../images/ico-view-comments.png');
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-view-menu #g-print-digibug-link {
|
2009-06-24 18:02:36 -07:00
|
|
|
background-image: url('../images/ico-print.png');
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-29 21:30:30 +00:00
|
|
|
/* Tags and cloud ~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul {
|
2008-11-09 20:07:47 +00:00
|
|
|
text-align: justify;
|
2008-11-05 04:05:53 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li {
|
2008-11-07 07:31:58 +00:00
|
|
|
display: inline;
|
2008-11-21 08:35:53 +00:00
|
|
|
line-height: 1.5em;
|
2008-11-09 20:07:47 +00:00
|
|
|
text-align: justify;
|
2008-11-05 04:05:53 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li a {
|
2008-11-07 07:31:58 +00:00
|
|
|
text-decoration: none;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-27 10:25:50 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li span {
|
2008-11-25 18:54:04 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size1 a {
|
2008-11-09 20:07:47 +00:00
|
|
|
color: #9cf;
|
2008-11-25 18:54:04 +00:00
|
|
|
font-size: 80%;
|
2008-11-07 07:31:58 +00:00
|
|
|
font-weight: 100;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size2 a {
|
2008-11-09 20:07:47 +00:00
|
|
|
color: #69f;
|
2008-11-25 18:54:04 +00:00
|
|
|
font-size: 90%;
|
2008-11-07 07:31:58 +00:00
|
|
|
font-weight: 300;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size3 a {
|
2008-11-09 20:07:47 +00:00
|
|
|
color: #69c;
|
2008-11-25 18:54:04 +00:00
|
|
|
font-size: 100%;
|
2008-11-07 07:31:58 +00:00
|
|
|
font-weight: 500;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size4 a {
|
2008-11-09 20:07:47 +00:00
|
|
|
color: #369;
|
2008-11-25 18:54:04 +00:00
|
|
|
font-size: 110%;
|
2008-11-07 07:31:58 +00:00
|
|
|
font-weight: 700;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size5 a {
|
2008-11-25 18:54:04 +00:00
|
|
|
color: #0e2b52;
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size6 a {
|
2008-11-25 18:54:04 +00:00
|
|
|
color: #0e2b52;
|
|
|
|
|
font-size: 130%;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li.size7 a {
|
2008-11-09 20:07:47 +00:00
|
|
|
color: #0e2b52;
|
2008-11-07 07:31:58 +00:00
|
|
|
font-size: 140%;
|
|
|
|
|
font-weight: 900;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-tag-cloud ul li a:hover {
|
2008-11-21 08:35:53 +00:00
|
|
|
color: #f30;
|
2008-11-07 07:31:58 +00:00
|
|
|
text-decoration: underline;
|
2008-11-03 05:53:20 +00:00
|
|
|
}
|
2008-11-13 03:39:18 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-welcome-message p {
|
2009-09-10 21:10:20 -07:00
|
|
|
padding-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-23 04:34:19 +00:00
|
|
|
/** *******************************************************************
|
2009-10-07 00:21:23 -06:00
|
|
|
* 6) jQuery and jQuery UI
|
2008-11-25 02:17:53 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
2009-07-01 00:35:33 -06:00
|
|
|
/* Superfish menu overrides ~~~~~~~~~~~~~~ */
|
|
|
|
|
|
|
|
|
|
.sf-menu li li, .sf-menu li li ul li {
|
|
|
|
|
background-color: #bdd2ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sf-menu li:hover {
|
|
|
|
|
background-color: #dfe9ff;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-30 00:50:23 +00:00
|
|
|
/* jQuery UI Dialog ~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-02-08 19:35:10 +00:00
|
|
|
.ui-widget-overlay {
|
|
|
|
|
background: #000;
|
|
|
|
|
opacity: .7;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-12 04:25:43 +00:00
|
|
|
/* jQuery UI ThemeRoller buttons */
|
2009-02-08 20:45:09 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-buttonset {
|
2009-02-12 04:25:43 +00:00
|
|
|
padding-left: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-buttonset li {
|
2009-02-12 04:25:43 +00:00
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
.g-buttonset .g-button {
|
2009-02-12 04:25:43 +00:00
|
|
|
margin: 0;
|
2009-02-20 07:10:20 +00:00
|
|
|
}
|
2009-02-12 04:25:43 +00:00
|
|
|
|
2009-02-08 20:45:09 +00:00
|
|
|
.ui-icon-left .ui-icon {
|
|
|
|
|
float: left;
|
2009-02-12 04:25:43 +00:00
|
|
|
margin-right: .2em;
|
2009-02-08 20:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-icon-right .ui-icon {
|
|
|
|
|
float: right;
|
2009-02-12 04:25:43 +00:00
|
|
|
margin-left: .2em;
|
2009-02-08 20:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
2009-03-18 06:15:37 +00:00
|
|
|
.ui-icon-rotate-ccw {
|
|
|
|
|
background-position: -192px -64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui-icon-rotate-cw {
|
|
|
|
|
background-position: -208px -64px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 05:14:44 +00:00
|
|
|
/* STUFF THAT NEEDS A HOME */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-move ul {
|
2009-01-24 05:14:44 +00:00
|
|
|
padding-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-move .selected {
|
2009-01-24 05:14:44 +00:00
|
|
|
background: #999;
|
|
|
|
|
}
|
2009-03-04 16:36:41 +00:00
|
|
|
|
2009-03-17 05:57:40 +00:00
|
|
|
/* Server Add */
|
2009-06-25 00:06:59 -06:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-server-add button {
|
2009-07-11 07:37:49 -07:00
|
|
|
margin-bottom: .5em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-server-add-tree {
|
2009-07-11 05:03:36 -07:00
|
|
|
cursor: pointer;
|
2009-07-11 07:37:49 -07:00
|
|
|
padding-left: 4px;
|
2009-09-10 23:18:51 -06:00
|
|
|
width: 95%;
|
2009-03-04 16:36:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-server-add-tree li {
|
2009-03-04 16:36:41 +00:00
|
|
|
padding: 0;
|
|
|
|
|
float: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-server-add-tree span.selected {
|
2009-07-11 05:03:36 -07:00
|
|
|
background: #ddd;
|
2009-03-04 16:36:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-server-add-tree {
|
2009-05-30 16:13:16 -06:00
|
|
|
border: 1px solid #ccc;
|
2009-09-10 23:18:51 -06:00
|
|
|
height: 20em;
|
2009-03-04 16:36:41 +00:00
|
|
|
overflow: auto;
|
|
|
|
|
margin-bottom: .5em;
|
2009-09-10 23:18:51 -06:00
|
|
|
padding: .5em;
|
2009-03-04 16:36:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-server-add ul ul li {
|
2009-03-04 16:36:41 +00:00
|
|
|
padding-left: 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-19 13:35:53 -07:00
|
|
|
/* Permissions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-edit-permissions-form {
|
2009-08-27 20:34:42 -04:00
|
|
|
clear: both;
|
|
|
|
|
}
|
2009-10-04 00:27:22 -06:00
|
|
|
|
|
|
|
|
#g-edit-permissions-form td {
|
|
|
|
|
background-image: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#g-edit-permissions-form fieldset {
|
|
|
|
|
border: 1px solid #ccc;
|
2009-08-27 20:34:42 -04:00
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-permissions .g-denied,
|
|
|
|
|
#g-permissions .g-allowed {
|
2009-06-19 13:35:53 -07:00
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2009-10-04 00:27:22 -06:00
|
|
|
|
|
|
|
|
#g-permissions .g-denied {
|
2009-06-19 13:35:53 -07:00
|
|
|
background-color: #fcc;
|
|
|
|
|
}
|
2009-10-04 00:27:22 -06:00
|
|
|
|
|
|
|
|
#g-permissions .g-allowed {
|
2009-06-19 13:35:53 -07:00
|
|
|
background-color: #cfc;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-17 05:20:37 +00:00
|
|
|
/*************** STUFF THAT NEEDS A HOME ****************/
|
2009-06-19 13:25:42 -07:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos #SWFUpload_0 {
|
2009-09-26 13:28:10 -04:00
|
|
|
position: relative;
|
|
|
|
|
top: -200px;
|
|
|
|
|
left: 134px;
|
|
|
|
|
}
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos .g-breadcrumbs {
|
2009-09-26 13:28:10 -04:00
|
|
|
border: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding-left:10px;
|
|
|
|
|
}
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-canvas {
|
2009-09-26 13:28:10 -04:00
|
|
|
border: 1px solid #CCCCCC;
|
|
|
|
|
margin: .5em 0 .5em 0;
|
|
|
|
|
width: 469px;
|
|
|
|
|
height: 325px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos button {
|
2009-09-26 13:28:10 -04:00
|
|
|
margin-bottom: .5em;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
#g-uploadqueue-infobar {
|
2009-09-10 22:58:37 -06:00
|
|
|
clear: both;
|
2009-09-26 13:28:10 -04:00
|
|
|
}
|
|
|
|
|
#g-uploadqueue-infobar #g-cancelupload {
|
|
|
|
|
display: none;
|
|
|
|
|
cursor: pointer;
|
2009-09-10 22:58:37 -06:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-canvas {
|
2009-09-26 13:28:10 -04:00
|
|
|
|
2009-03-17 05:20:37 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .progressbar {
|
2009-03-17 05:20:37 +00:00
|
|
|
height: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .title {
|
2009-03-17 05:20:37 +00:00
|
|
|
font-size: 1.25em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .status {
|
2009-03-17 05:20:37 +00:00
|
|
|
font-size: .75em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .box {
|
2009-03-17 05:20:37 +00:00
|
|
|
margin-bottom: 8px;
|
2009-03-17 06:05:46 +00:00
|
|
|
padding: 4px;
|
2009-03-17 05:20:37 +00:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .pending {
|
2009-03-17 05:20:37 +00:00
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
border: 1px solid #d7d7d7;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .error {
|
2009-03-17 05:20:37 +00:00
|
|
|
background-color: #fcc;
|
|
|
|
|
border: 1px solid #ebb;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .uploading {
|
2009-03-17 05:20:37 +00:00
|
|
|
background-color: #ff9;
|
|
|
|
|
border: 1px solid #ee8;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-add-photos-queue .complete {
|
2009-03-17 05:20:37 +00:00
|
|
|
background-color: #cfc;
|
|
|
|
|
border: 1px solid #beb;
|
|
|
|
|
}
|
2009-06-19 13:47:38 -07:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-g2-import-notes {
|
2009-06-19 13:47:38 -07:00
|
|
|
padding-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-g2-import-details {
|
2009-06-19 13:47:38 -07:00
|
|
|
padding-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-g2-import-details .g-warning {
|
2009-06-19 13:47:38 -07:00
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-g2-import-details .g-info {
|
2009-06-19 13:47:38 -07:00
|
|
|
padding: 2px;
|
|
|
|
|
border: 1px solid #999;
|
2009-06-19 15:56:55 -07:00
|
|
|
margin-bottom: 10px;
|
2009-06-19 13:47:38 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-g2-import-notes p,
|
|
|
|
|
#g-admin-g2-import-details .g-info p {
|
2009-06-25 00:06:59 -06:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2009-06-19 13:47:38 -07:00
|
|
|
}
|
|
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
#g-admin-g2-import-notes ul li,
|
|
|
|
|
#g-admin-g2-import .g-info ul li {
|
2009-06-25 00:06:59 -06:00
|
|
|
padding-left: 0;
|
2009-06-19 13:47:38 -07:00
|
|
|
margin-left: 20px;
|
2009-06-19 15:56:55 -07:00
|
|
|
list-style-type: disc;
|
2009-06-19 13:47:38 -07:00
|
|
|
}
|
2009-06-24 23:48:28 -06:00
|
|
|
|
|
|
|
|
/* Right to left styles ~~~~~~~~~~~~~~~~~~~~ */
|
|
|
|
|
|
|
|
|
|
.rtl {
|
|
|
|
|
direction: rtl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rtl caption,
|
2009-06-25 00:06:59 -06:00
|
|
|
.rtl th,
|
2009-09-30 22:49:36 -06:00
|
|
|
.rtl #g-dialog {
|
2009-06-24 23:48:28 -06:00
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-07 21:52:45 -06:00
|
|
|
.rtl .g-right,
|
2009-10-04 00:27:22 -06:00
|
|
|
.rtl #g-header #g-quick-search-form,
|
|
|
|
|
.rtl #g-header #g-login-menu,
|
2009-06-24 23:48:28 -06:00
|
|
|
.rtl .ui-icon-right .ui-icon {
|
|
|
|
|
clear: left;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-07 21:52:45 -06:00
|
|
|
.rtl .g-left,
|
2009-06-24 23:48:28 -06:00
|
|
|
.rtl form ul ul li,
|
|
|
|
|
.rtl input[type="submit"],
|
|
|
|
|
.rtl input[type="reset"],
|
2009-10-04 00:27:22 -06: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-06-24 23:48:28 -06:00
|
|
|
.rtl .ui-icon-left .ui-icon {
|
|
|
|
|
float: right;
|
2009-06-25 08:14:34 -07:00
|
|
|
}
|