summaryrefslogtreecommitdiffstats
path: root/WebContent/ITMILL/themes/base/tabsheet/tabsheet.css
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/ITMILL/themes/base/tabsheet/tabsheet.css')
-rw-r--r--WebContent/ITMILL/themes/base/tabsheet/tabsheet.css74
1 files changed, 74 insertions, 0 deletions
diff --git a/WebContent/ITMILL/themes/base/tabsheet/tabsheet.css b/WebContent/ITMILL/themes/base/tabsheet/tabsheet.css
new file mode 100644
index 0000000000..85c3daa89c
--- /dev/null
+++ b/WebContent/ITMILL/themes/base/tabsheet/tabsheet.css
@@ -0,0 +1,74 @@
+.i-tabsheet,
+.i-tabsheet-content,
+.i-tabsheet-deco {
+ outline: none; /* Prevent selection outline which might break layouts or cause scrollbars */
+ text-align: left /* Force default alignment */
+}
+
+.i-tabsheet-tabs {
+ empty-cells: hide;
+ border-collapse: collapse;
+ margin: 0;
+ padding: 0;
+ border: 0;
+ width: 100%;
+ overflow: hidden;
+ border-bottom: 1px solid #ddd;
+}
+
+.i-tabsheet-tabs td {
+ margin:0;
+ padding:0;
+ vertical-align: bottom;
+}
+
+.i-tabsheet-spacertd {
+ width: 100%;
+}
+
+.i-tabsheet-hidetabs .i-tabsheet-tabcontainer {
+ display: none;
+}
+
+.i-tabsheet-scroller {
+ white-space: nowrap;
+ text-align: right;
+ margin-top: -1em;
+}
+
+.i-tabsheet-scrollerPrev,
+.i-tabsheet-scrollerNext {
+ border: none;
+ width: 0.5em;
+ height: 1em;
+ background: #ddd;
+ cursor: pointer;
+}
+.i-tabsheet-scrollerPrev-disabled,
+.i-tabsheet-scrollerNext-disabled {
+ border: none;
+ width: 0.5em;
+ height: 1em;
+ background: #efefef;
+}
+
+.i-tabsheet-tabs .i-caption {
+ white-space: nowrap;
+}
+
+/* for IE (does not inherit) */
+.i-tabsheet-tabs .i-caption span {
+ white-space: nowrap;
+}
+
+.i-tabsheet-tabitem {
+ cursor: pointer;
+}
+
+.i-tabsheet-tabitem-selected {
+ background: #ddd;
+}
+
+.i-tabsheet-content {
+ position: relative;
+} \ No newline at end of file