Files
@ 8320d5cdccd0
Branch filter:
Location: kallithea/rhodecode/public/js/yui/layout/assets/layout-core.css
8320d5cdccd0
2.6 KiB
text/css
Added tag v1.1.4 for changeset bdc438fb4fe4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | /*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.8.0r4
*/
.yui-layout-loading {
visibility: hidden;
}
body.yui-layout {
overflow: hidden;
position: relative;
padding: 0;
margin: 0;
}
.yui-layout-doc {
position: relative;
overflow: hidden;
padding: 0;
margin: 0;
}
.yui-layout-unit {
height: 50px;
width: 50px;
padding: 0;
margin: 0;
float: none;
z-index: 0;
/*overflow: hidden;*/
}
.yui-layout-unit-top {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.yui-layout-unit-left {
position: absolute;
top: 0;
left: 0;
}
.yui-layout-unit-right {
position: absolute;
top: 0;
right: 0;
}
.yui-layout-unit-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.yui-layout-unit-center {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.yui-layout div.yui-layout-hd {
position: absolute;
top: 0;
left: 0;
zoom: 1;
width: 100%;
/*overflow: hidden;*/
}
.yui-layout div.yui-layout-bd {
position: absolute;
top: 0;
left: 0;
zoom: 1;
width: 100%;
/*overflow: hidden;*/
}
.yui-layout .yui-layout-noscroll div.yui-layout-bd {
overflow: hidden;
}
.yui-layout .yui-layout-scroll div.yui-layout-bd {
overflow: auto;
}
.yui-layout div.yui-layout-ft {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
zoom: 1;
/*overflow: hidden;*/
}
.yui-layout .yui-layout-unit div.yui-layout-hd h2 {
text-align: left;
}
.yui-layout .yui-layout-unit div.yui-layout-hd .collapse {
cursor: pointer;
height: 13px;
position: absolute;
right: 2px;
top: 2px;
width: 17px;
font-size: 0;
}
.yui-layout .yui-layout-unit div.yui-layout-hd .close {
cursor: pointer;
height: 13px;
position: absolute;
right: 2px;
top: 2px;
width: 17px;
font-size: 0;
}
.yui-layout .yui-layout-unit div.yui-layout-hd .collapse-close {
right: 25px;
}
.yui-layout .yui-layout-clip {
position: absolute;
height: 20px;
background-color: #c0c0c0;
display: none;
}
.yui-layout .yui-layout-clip .collapse {
cursor: pointer;
height: 13px;
position: absolute;
right: 2px;
top: 2px;
width: 17px;
font-size: 0px;
}
.yui-layout .yui-layout-wrap {
height: 100%;
width: 100%;
position: absolute;
left: 0;
}
/*
.yui-layout .yui-layout-unit .yui-content {
overflow: hidden;
}
.yui-layout .yui-layout-unit .yui-layout-scroll {
overflow: auto;
}
*/
|