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-02-23 05:14:05 +00:00
|
|
|
#gSidebar .gBlockContent {
|
|
|
|
|
padding: 0;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-06 03:47:58 +00:00
|
|
|
.gAvailable .gButtonLink {
|
|
|
|
|
width: 96%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gSelected .gButtonLink {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gPhotoStream .gBlockContent ul {
|
|
|
|
|
border-right: 1px solid #e8e8e8;
|
2009-02-23 05:14:05 +00:00
|
|
|
height: 135px;
|
2009-02-20 07:10:20 +00:00
|
|
|
overflow: auto;
|
|
|
|
|
overflow: -moz-scrollbars-horizontal; /* for FF */
|
|
|
|
|
overflow-x: scroll; /* scroll horizontal */
|
|
|
|
|
overflow-y: hidden; /* Hide vertical*/
|
2009-02-15 22:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gContent #gPhotoStream .gItem {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
|
border-right-color: #ccc;
|
|
|
|
|
border-bottom-color: #ccc;
|
|
|
|
|
float: left;
|
|
|
|
|
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-20 07:10:20 +00:00
|
|
|
#gContent .gItem {
|
|
|
|
|
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-02-15 22:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-20 07:10:20 +00:00
|
|
|
#gAdminCommentsMenu {
|
|
|
|
|
margin: 1em 0;
|
2009-02-15 22:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gAdminCommentsMenu a {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: .2em .6em;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-25 06:55:24 +00:00
|
|
|
#gAdminGraphics .gAvailable .gBlock {
|
|
|
|
|
clear: none;
|
|
|
|
|
float: left;
|
2009-05-06 03:47:58 +00:00
|
|
|
height: 16em;
|
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-05-31 18:25:43 -04:00
|
|
|
#gUserAdminList td {
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
}
|
2009-01-25 21:14:44 +00:00
|
|
|
|
2009-02-26 03:05:29 +00:00
|
|
|
#gUserAdminList .gDraggable:hover {
|
|
|
|
|
border: 1px dashed black;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-13 03:44:55 +00:00
|
|
|
#gUserAdminList .admin {
|
|
|
|
|
color: #55f;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
border: 1px solid gray;
|
2009-05-31 18:25:43 -04:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0 1em 1em 0;
|
|
|
|
|
}
|
|
|
|
|
li.gGroup h4 {
|
|
|
|
|
background-color: #EEEEEE;
|
|
|
|
|
border-bottom: 1px dashed #CCCCCC;
|
|
|
|
|
padding: .5em 0 .5em .5em;
|
|
|
|
|
}
|
|
|
|
|
li.gGroup .gButtonLink {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
li.gGroup ul, li.gGroup div {
|
|
|
|
|
height: 180px;
|
|
|
|
|
margin: 1px;
|
2009-05-30 12:09:56 -04:00
|
|
|
overflow: auto;
|
2009-05-31 18:25:43 -04:00
|
|
|
padding-top: .2em;
|
|
|
|
|
}
|
|
|
|
|
li.gGroup div p {
|
|
|
|
|
color: gray;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 2em .5em 0 .5em
|
|
|
|
|
}
|
|
|
|
|
li.gGroup .gUser {
|
|
|
|
|
padding: .2em 0 0 .5em;
|
|
|
|
|
}
|
|
|
|
|
li.gGroup .gUser .gButtonLink {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li.gDefaultGroup h4, li.gDefaultGroup .gUser {
|
|
|
|
|
color: gray;
|
2009-01-13 10:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
2009-05-13 19:48:57 +00:00
|
|
|
#gAdminAdvancedSettings tr.setting:hover {
|
|
|
|
|
background: #ffc;
|
|
|
|
|
}
|
|
|
|
|
|
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,
|
2009-02-20 07:10:20 +00:00
|
|
|
.gAvailable .gBlock:after,
|
2009-03-13 22:15:16 +00:00
|
|
|
#gModuleCreateForm ul li ul:after,
|
|
|
|
|
#gDeveloperTools:after,
|
2009-02-23 05:14:05 +00:00
|
|
|
#gPhotoStream: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 {
|
2009-02-20 07:10:20 +00:00
|
|
|
width: 8em !important;
|
2009-02-15 22:36:51 +00:00
|
|
|
}
|
2009-02-23 05:14:05 +00:00
|
|
|
|
|
|
|
|
#gAdminDashboard .ui-dialog-titlebar,
|
|
|
|
|
#gAdminDashboardSidebar .ui-dialog-titlebar {
|
|
|
|
|
padding: .2em .4em;
|
2009-02-26 03:05:29 +00:00
|
|
|
}
|
2009-02-26 03:38:56 +00:00
|
|
|
|
|
|
|
|
/**** Stuff that needs a home! ****/
|
2009-03-25 04:47:25 +00:00
|
|
|
#gTagAdmin {
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
}
|
2009-02-26 03:38:56 +00:00
|
|
|
#gTagAdmin td {
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
#gTagAdmin ul {
|
|
|
|
|
padding-bottom: .3em;
|
|
|
|
|
}
|
|
|
|
|
#gTagAdmin li {
|
|
|
|
|
padding: .1em 0 .2em .3em;
|
|
|
|
|
}
|
|
|
|
|
#gTagAdmin .gColumn {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 200px;
|
|
|
|
|
}
|
|
|
|
|
.gEditable {
|
|
|
|
|
padding: .1em .3em .2em .3em;
|
|
|
|
|
}
|
|
|
|
|
.gEditable:hover {
|
|
|
|
|
background-color: #ffc;
|
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
|
|
|
|
#gRenameTagForm input {
|
|
|
|
|
padding: 0 .2em 0 .2em;
|
|
|
|
|
clear: none;
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0 .2em 0 0;
|
|
|
|
|
}
|
|
|
|
|
#gRenameTagForm input[type="submit"] {
|
|
|
|
|
height: 25px;
|
|
|
|
|
}
|
|
|
|
|
#gRenameTagForm a, #gRenameTagForm span {
|
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
|
|
|
|
padding: .2em .2em 0 .1em;
|
|
|
|
|
}
|
2009-03-16 05:50:05 +00:00
|
|
|
#gProgress button {
|
|
|
|
|
float: right;
|
|
|
|
|
margin-top: 1em;
|
|
|
|
|
}
|
2009-03-04 16:36:41 +00:00
|
|
|
|
|
|
|
|
/** *******************************************************************
|
2009-05-13 03:44:55 +00:00
|
|
|
* 7) Server Add
|
2009-03-04 16:36:41 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
#gServerAddAdmin {
|
|
|
|
|
margin:auto;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gServerAddAdmin form fieldset {
|
|
|
|
|
border: medium none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gServerAddAdmin legend {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gServerAddAdmin .gWarning {
|
|
|
|
|
background-color: #FFFF99;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gAuthorizedPath {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
padding: 0.3em 1.5em 0.3em 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gServerAdd Admin #path {
|
|
|
|
|
width: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gRemoveDir:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|