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
|
td.widgetmanager-name {
width: 150px;
}
#widget-manager-listing table {
border-bottom: 0;
}
.textarea-wrapper {
width: 290px;
}
#stage {
position: relative;
width: 620px;
}
#installed-column {
width: 300px;
background-color: #e6ecf2;
float: left;
}
#center-column {
width: 20px;
text-align: center;
float: left;
}
#available-column {
width: 300px;
background-color: #eee;
float: left;
}
#installed-column p,
#available-column p {
margin: 0 0 5px 0;
padding: 5px 0;
background-color: #8faebe;
color: #fff;
text-align: center;
font-weight: bold;
}
#available-column p {
background-color: #bbb;
}
#stage-drop {
display: none;
}
.module {
position: absolute;
display: none;
width: 100%;
border: 1px solid #a3b8cc;
background-color: #fff;
padding: 5px;
font-size: x-small;
line-height: 1;
}
#available-column .module {
border: 1px solid #bbb;
}
.module-name {
float: left;
text-align: left;
}
.module-edit {
float: right;
text-align: right;
text-transform: lowercase;
}
.module a:link,
.module a:visited,
.module a:hover,
.module a:active {
color: #333;
font-weight: normal;
text-decoration: none;
}
|