One toolbar color per app

This commit is contained in:
yflory
2017-06-20 12:33:50 +02:00
parent 5a248db267
commit 59fb5bd8be
10 changed files with 157 additions and 63 deletions

View File

@@ -98,10 +98,14 @@
.toolbar-container .cryptpad-toolbar select {
box-sizing: border-box;
}
.cke_reset_all * {
color: inherit;
}
.cryptpad-toolbar {
box-sizing: border-box;
padding: 0px 6px;
background-color: #FF0073;
background-color: #fff;
color: #000;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
@@ -109,10 +113,37 @@
-ms-user-select: none;
user-select: none;
font: normal normal normal 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
color: #000;
width: 100%;
z-index: 9001;
}
.cryptpad-toolbar.pad {
background-color: #1c4fa0;
color: #fff;
}
.cryptpad-toolbar.code {
background-color: #ffae00;
color: #000;
}
.cryptpad-toolbar.slide {
background-color: #a01c1c;
color: #fff;
}
.cryptpad-toolbar.poll {
background-color: #006304;
color: #fff;
}
.cryptpad-toolbar.whiteboard {
background-color: #570063;
color: #fff;
}
.cryptpad-toolbar.drive {
background-color: #0087ff;
color: #fff;
}
.cryptpad-toolbar.file {
background-color: #ccffa0;
color: #000;
}
.cryptpad-toolbar .fa {
font: normal normal normal 14px/1 FontAwesome;
font-family: FontAwesome;
@@ -121,14 +152,11 @@
float: right;
}
.cryptpad-toolbar button {
font: 12px Ubuntu, Arial, sans-serif;
border: 1px solid transparent;
border-radius: .25rem;
color: #000;
background-color: #fff;
border-color: #ccc;
}
.cryptpad-toolbar button * {
font: 12px Ubuntu, Arial, sans-serif;
}
.cryptpad-toolbar button#shareButton,
@@ -174,6 +202,10 @@
.cryptpad-toolbar button.hidden {
display: none;
}
.cryptpad-toolbar button * {
color: #000;
font: 12px Ubuntu, Arial, sans-serif;
}
.cryptpad-toolbar button:hover {
color: #292b2c;
background-color: #e6e6e6;