Commit 95d196584d4fec6338cd8d4f0bd93dc18fc31ee5
1 parent
23835e75
CSS necessary for text-based buttons
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2942 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
28 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/stylesheet.php
| @@ -148,4 +148,31 @@ SELECT { | @@ -148,4 +148,31 @@ SELECT { | ||
| 148 | position:absolute; | 148 | position:absolute; |
| 149 | left:0px; | 149 | left:0px; |
| 150 | top:0px; | 150 | top:0px; |
| 151 | -} | ||
| 152 | \ No newline at end of file | 151 | \ No newline at end of file |
| 152 | +} | ||
| 153 | + | ||
| 154 | +span.button { | ||
| 155 | + font-size: 6pt; | ||
| 156 | + width: 100%; | ||
| 157 | + /* height: 20px; */ | ||
| 158 | + border: 1px solid #000; | ||
| 159 | + text-align: center; | ||
| 160 | + white-space: nowrap; | ||
| 161 | + display: block; | ||
| 162 | + margin-top: 4px; | ||
| 163 | + text-decoration: none; | ||
| 164 | +} | ||
| 165 | +span.button:Hover { | ||
| 166 | + background-color: #EEEEEE; | ||
| 167 | +} | ||
| 168 | +span.disabledbutton { | ||
| 169 | + font-size: 6pt; | ||
| 170 | + background-color: #CCCCCC; | ||
| 171 | + color: #333333; | ||
| 172 | + width: 100%; | ||
| 173 | + /* height: 20px; */ | ||
| 174 | + border: 1px solid #333; | ||
| 175 | + text-align: center; | ||
| 176 | + white-space: nowrap; | ||
| 177 | + display: block; | ||
| 178 | + margin-top: 4px; | ||
| 179 | +} |