2009-01-02 20:09:28 +00:00
|
|
|
/**
|
|
|
|
|
* Gallery 3 Default Admin Theme Screen Styles
|
|
|
|
|
*
|
|
|
|
|
* Extends themes/default/css/screen.css
|
2009-01-25 21:14:44 +00:00
|
|
|
*
|
2009-02-01 18:37:45 +00:00
|
|
|
* 1) Basic HTML elements
|
|
|
|
|
* 2) Reusable content blocks
|
|
|
|
|
* 3) Page layout containers
|
|
|
|
|
* 4) Content blocks in specific layout containers
|
|
|
|
|
* 5) Browser hacks
|
|
|
|
|
* 6) jQuery and jQuery UI
|
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
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
|
|
/** *******************************************************************
|
|
|
|
|
* 2) Reusable content blocks
|
2009-01-02 20:09:28 +00:00
|
|
|
**********************************************************************/
|
2009-01-13 04:56:29 +00:00
|
|
|
|
2008-12-15 01:48:34 +00:00
|
|
|
.gBlock {
|
2009-01-24 20:06:13 +00:00
|
|
|
background-color: #fff;
|
2009-01-25 06:55:24 +00:00
|
|
|
border: 1px solid #ccc;
|
2008-12-19 01:54:53 +00:00
|
|
|
margin-bottom: 1em;
|
2009-01-24 20:06:13 +00:00
|
|
|
padding: 1em;
|
2008-12-15 01:48:34 +00:00
|
|
|
}
|
2009-01-02 07:09:25 +00:00
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
.gBlockContent {
|
2009-01-03 01:26:22 +00:00
|
|
|
padding: 0 1em 1em 1em;
|
2008-12-15 01:48:34 +00:00
|
|
|
}
|
2009-01-02 07:09:25 +00:00
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
.gSelected img,
|
2009-01-25 21:14:44 +00:00
|
|
|
.gAvailable .gBlock img {
|
2009-01-24 20:06:13 +00:00
|
|
|
float: left;
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gSelected {
|
2009-01-25 21:14:44 +00:00
|
|
|
background: #e8e8e8;
|
2009-01-24 20:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-05 23:29:44 +00:00
|
|
|
.gAvailable .gInstalledToolkit:hover {
|
2009-01-24 20:06:13 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
background: #eee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gUnavailable {
|
2009-01-25 21:14:44 +00:00
|
|
|
border-color: #999;
|
2009-01-24 20:06:13 +00:00
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gOddRow {
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gEvenRow {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
/** *******************************************************************
|
2009-02-01 18:37:45 +00:00
|
|
|
* 3) Page layout containers
|
2009-01-02 20:09:28 +00:00
|
|
|
**********************************************************************/
|
2009-01-24 20:06:13 +00:00
|
|
|
|
2009-01-10 22:39:24 +00:00
|
|
|
.gView {
|
|
|
|
|
min-width: 974px !important;
|
|
|
|
|
}
|
2009-01-02 20:09:28 +00:00
|
|
|
|
|
|
|
|
#gHeader {
|
2009-01-02 22:06:12 +00:00
|
|
|
background-color: #e8e8e8;
|
2009-01-02 20:09:28 +00:00
|
|
|
border-bottom: 1px solid #ccc;
|
2009-02-15 22:36:51 +00:00
|
|
|
margin-bottom: 20px;
|
2009-01-02 20:09:28 +00:00
|
|
|
padding: 0 20px;
|
2009-01-02 07:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
#gContent {
|
|
|
|
|
font-size: 1.1em;
|
2009-01-10 22:39:24 +00:00
|
|
|
width: 96%;
|
2009-01-02 07:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
/** *******************************************************************
|
2009-02-01 18:37:45 +00:00
|
|
|
* 4) Content blocks in specific layout containers
|
2009-01-02 20:09:28 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
|
|
#gHeader #gLogo {
|
|
|
|
|
float: left;
|
2009-01-10 18:34:25 +00:00
|
|
|
margin: -22px 10px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gHeader #gLoginMenu {
|
|
|
|
|
float: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 5px 0 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gHeader #gLoginMenu {
|
|
|
|
|
text-align: right;
|
2008-12-15 01:48:34 +00:00
|
|
|
}
|
2008-12-19 06:10:45 +00:00
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
#gHeader #gSiteAdminMenu {
|
|
|
|
|
float: left;
|
2008-12-19 06:10:45 +00:00
|
|
|
font-size: 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
#gHeader #gSiteAdminMenu ul {
|
2008-12-19 06:10:45 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2009-01-02 07:09:25 +00:00
|
|
|
|
2009-01-16 06:45:25 +00:00
|
|
|
.gBlock .ui-dialog-titlebar {
|
2009-01-25 06:55:24 +00:00
|
|
|
margin: -1em -1em 0;
|
2009-01-02 20:09:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gSidebar .gBlock h2 {
|
2009-01-12 03:49:19 +00:00
|
|
|
background: none;
|
2009-01-02 20:09:28 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-15 22:36:51 +00:00
|
|
|
#gPhotoStream {
|
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-02 20:09:28 +00:00
|
|
|
#gPhotoStream .gBlockContent {
|
2009-02-15 22:36:51 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gPhotoStream .gBlockContent ul {
|
|
|
|
|
border-right: 1px solid #e8e8e8;
|
|
|
|
|
height: 92px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gContent #gPhotoStream .gItem {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
|
border-right-color: #ccc;
|
|
|
|
|
border-bottom-color: #ccc;
|
|
|
|
|
float: left;
|
|
|
|
|
font-size: .7em;
|
|
|
|
|
height: 90px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 90px;
|
2009-01-02 07:09:25 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-10 19:33:01 +00:00
|
|
|
#gSiteStatus {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-15 22:36:51 +00:00
|
|
|
#gAdminCommentsMenu {
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gAdminCommentsMenu li {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gAdminCommentsMenu a {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: .2em .6em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-25 06:55:24 +00:00
|
|
|
#gAdminGraphics .gAvailable .gBlock {
|
|
|
|
|
clear: none;
|
|
|
|
|
float: left;
|
2009-01-25 21:14:44 +00:00
|
|
|
height: 200px;
|
2009-01-25 06:55:24 +00:00
|
|
|
margin-right: 1em;
|
2009-01-25 21:14:44 +00:00
|
|
|
width: 30%;
|
2009-01-25 06:55:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gSiteTheme,
|
|
|
|
|
#gAdminTheme {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 48%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gSiteTheme {
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-25 21:14:44 +00:00
|
|
|
#gUserAdminList {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
.gActions a,
|
|
|
|
|
.gActions span {
|
2009-01-25 21:14:44 +00:00
|
|
|
margin-right: 3em;
|
2009-01-13 10:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
li.gGroup {
|
2009-01-13 10:53:06 +00:00
|
|
|
float: left;
|
2009-01-24 20:06:13 +00:00
|
|
|
display: block;
|
|
|
|
|
width: 200px;
|
2009-01-13 10:53:06 +00:00
|
|
|
height: 200px;
|
2009-01-24 20:06:13 +00:00
|
|
|
border: 1px solid gray;
|
|
|
|
|
padding: .5em;
|
|
|
|
|
margin-right: 1em;
|
2009-01-13 10:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
/** *******************************************************************
|
2009-02-01 18:37:45 +00:00
|
|
|
* 5) Browser hacks
|
2009-01-24 20:06:13 +00:00
|
|
|
*********************************************************************/
|
2009-01-13 10:53:06 +00:00
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
#gHeader:after,
|
|
|
|
|
#gAdminCommentsMenu:after,
|
2009-01-25 06:55:24 +00:00
|
|
|
#gGroupAdmin:after,
|
2009-02-12 04:25:43 +00:00
|
|
|
.gSelected:after,
|
|
|
|
|
.gAvailable .gBlock:after {
|
2009-01-24 20:06:13 +00:00
|
|
|
clear: both;
|
|
|
|
|
content: ".";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 0;
|
|
|
|
|
visibility: hidden;
|
2009-01-13 10:53:06 +00:00
|
|
|
}
|
2009-01-25 21:14:44 +00:00
|
|
|
|
|
|
|
|
/** *******************************************************************
|
2009-02-01 18:37:45 +00:00
|
|
|
* 6) jQuery and jQuery UI
|
2009-01-25 21:14:44 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
|
|
#gPanel {
|
|
|
|
|
display: none;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gPanel legend {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gPanel fieldset {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
2009-02-01 18:37:45 +00:00
|
|
|
|
|
|
|
|
.ui-draggable,
|
|
|
|
|
.ui-sortable {
|
|
|
|
|
cursor: move;
|
|
|
|
|
}
|
2009-02-15 22:36:51 +00:00
|
|
|
|
|
|
|
|
.gButtonSetVertical a {
|
|
|
|
|
width: 8em;
|
|
|
|
|
}
|