mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-21 03:49:21 -04:00
micro thumb grid, by setting all the parent elements to 100% in the css and then subtract the height of the button bar
187 lines
2.9 KiB
CSS
187 lines
2.9 KiB
CSS
/*******************************************************************
|
|
* Dialog wide stylings
|
|
*/
|
|
#gOrganizeDialog {
|
|
text-align: left;
|
|
}
|
|
|
|
#gOrganize {
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
#gOrganize #bd {
|
|
height: 100%;
|
|
}
|
|
|
|
#gOrganize .yui-u {
|
|
width: 75%;
|
|
}
|
|
|
|
#gOrganize .yui-gf .first {
|
|
width: 25%;
|
|
}
|
|
|
|
#gOrganize .yui-gf #gMessage {
|
|
margin-bottom: .4em;
|
|
width: 75%;
|
|
}
|
|
|
|
#gOrganizeDetail {
|
|
height: 100%;
|
|
}
|
|
|
|
#gMessage .gInfo {
|
|
font-weight: bold;
|
|
padding-left: 2em;
|
|
}
|
|
|
|
/*******************************************************************
|
|
* Album Tree styling
|
|
*/
|
|
#gOrganizeTreeContainer {
|
|
height: 100%;
|
|
overflow: auto;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
#gOrganizeTreeContainer ul ul li {
|
|
padding-left: 1.2em;
|
|
}
|
|
|
|
.gBranchText:hover {
|
|
border: 1px dashed #999;
|
|
}
|
|
|
|
.gBranchEmpty {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.gBranchSelected {
|
|
background-color: #cfdeff !important;
|
|
border-bottom: 1px solid #999 !important;
|
|
display: block;
|
|
padding: .3em 0;
|
|
}
|
|
|
|
.gBranchCollapsed {
|
|
display: none;
|
|
}
|
|
|
|
.gOrganizeBranch span {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.gBranchText {
|
|
cursor: pointer;
|
|
width: auto;
|
|
}
|
|
/*******************************************************************
|
|
* Album Panel Styles
|
|
*/
|
|
#gMicroThumbPanel {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
background-color: #cfdeff;
|
|
border: 1px solid #999 !important;
|
|
border-top: none !important;
|
|
border-left: none !important;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#gMicroThumbGrid {
|
|
padding: .5em;
|
|
}
|
|
|
|
.gMicroThumbContainer {
|
|
// padding: 0 .5em;
|
|
// opacity: .4;
|
|
}
|
|
|
|
.gMicroThumb {
|
|
display: block;
|
|
float: left;
|
|
font-size: .8em;
|
|
height: 9em;
|
|
margin-bottom: 1em;
|
|
margin-left: 1em;
|
|
text-align: center;
|
|
width: 9em;
|
|
}
|
|
|
|
.gThumbnail {
|
|
padding: .5em;
|
|
}
|
|
|
|
#gMicroThumbPanel #gMicroThumbGrid .gAlbum {
|
|
background-color: #e8e8e8;
|
|
}
|
|
|
|
#gMicroThumbPanel #gMicroThumbGrid :hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
/****************************************************************
|
|
* Organize Edit Drawer styling
|
|
*/
|
|
#gOrganizeEditDrawer {
|
|
background-color: #13A;
|
|
width: 100% !important;
|
|
}
|
|
|
|
#gOrganizeEditDrawerPanel {
|
|
background-color: #fff;
|
|
border: 1px solid #13A;
|
|
display: none;
|
|
height: 195px;
|
|
}
|
|
|
|
#gOrganizeEditDrawerHandle {
|
|
height: 30px;
|
|
}
|
|
|
|
#gOrganizeEditHandleLeft {
|
|
background-color: #FFF;
|
|
float: left;
|
|
height: 30px;
|
|
width: 15px;
|
|
}
|
|
|
|
#gOrganizeEditHandleButtonsMiddle,
|
|
#gOrganizeEditHandleButtonsLeft {
|
|
float: left;
|
|
height: 20px;
|
|
padding: 2px 10px;
|
|
}
|
|
|
|
#gOrganizeEditHandleButtonsMiddle {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
#gOrganizeEditHandleButtonsMiddle a,
|
|
#gOrganizeEditHandleButtonsLeft a {
|
|
float: left;
|
|
margin: 0 2.5px;
|
|
}
|
|
|
|
#gOrganizeEditHandleButtonsRight {
|
|
float: right;
|
|
height: 20px;
|
|
padding: 2px 10px;
|
|
}
|
|
|
|
#gOrganizeEditHandleButtonsRight a {
|
|
float: left;
|
|
margin: 0 2.5px;
|
|
}
|
|
|
|
#gOrganizeEditHandleRight {
|
|
background-color: #FFF;
|
|
background-position: -15px 0;
|
|
float: right;
|
|
height: 30px;
|
|
width: 15px;
|
|
}
|