aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-07-29 17:36:07 +0200
committerArthur Schiwon <blizzz@owncloud.com>2015-08-07 01:22:44 +0200
commit781ba420c95576ead4e8275b05fb72ea72b0d9c6 (patch)
tree422201b7e61d110fe70de71cfa8b72e2a7b95b3b /core
parenta81251454d81a5ea2532b66af42c835bc5566f00 (diff)
downloadnextcloud-server-781ba420c95576ead4e8275b05fb72ea72b0d9c6.tar.gz
nextcloud-server-781ba420c95576ead4e8275b05fb72ea72b0d9c6.zip
Use own tabs impl in files sidebar
Also change style.
Diffstat (limited to 'core')
-rw-r--r--core/css/apps.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/core/css/apps.css b/core/css/apps.css
index d3b9c0e7095..bbeb4444991 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -592,3 +592,51 @@ em {
padding:16px;
}
+/* generic tab styles */
+.tabHeaders {
+ margin: 15px;
+ background-color: #1D2D44;
+}
+
+.tabHeaders .tabHeader {
+ float: left;
+ border: 1px solid #ddd;
+ padding: 5px;
+ cursor: pointer;
+ background-color: #f8f8f8;
+ font-weight: bold;
+}
+.tabHeaders .tabHeader, .tabHeaders .tabHeader a {
+ color: #888;
+}
+
+.tabHeaders .tabHeader:first-child {
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+}
+
+.tabHeaders .tabHeader:last-child {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+
+.tabHeaders .tabHeader.selected,
+.tabHeaders .tabHeader:hover {
+ background-color: #e8e8e8;
+}
+
+.tabHeaders .tabHeader.selected,
+.tabHeaders .tabHeader.selected a,
+.tabHeaders .tabHeader:hover,
+.tabHeaders .tabHeader:hover a {
+ color: #000;
+}
+
+.tabsContainer {
+ clear: left;
+}
+
+.tabsContainer .tab {
+ padding: 15px;
+}
+