Browse Source

added files

master
Torsten Paul 4 years ago
parent
commit
a6b080b1c3
  1. 46
      tpDEsign/core/css/server.css
  2. 22
      tpDEsign/defaults.php

46
tpDEsign/core/css/server.css

@ -162,10 +162,6 @@ filter : invert(100%);
.notification img.notification-icon { .notification img.notification-icon {
filter : invert(100%); filter : invert(100%);
} }
.icon-settings-white {
background-image: #fff !important;
/* filter : invert(100%); */
}
#editor-wrapper div.ProseMirror { #editor-wrapper div.ProseMirror {
background-color : #011d24 !important ; background-color : #011d24 !important ;
font-size : 20px; font-size : 20px;
@ -190,19 +186,19 @@ div.select2-drop {
background-color : #0e151b; background-color : #0e151b;
} }
#uploadprogressbar .label.inner { #uploadprogressbar .label.inner {
font-size:14px; font-size : 14px;
} }
#uploadprogressbar { #uploadprogressbar {
font-size:14px; font-size : 14px;
} }
#uploadprogresswrapper { #uploadprogresswrapper {
font-size:14px; font-size : 14px;
} }
div.select2-container.select2-container-multi .select2-choices { div.select2-container.select2-container-multi .select2-choices {
font-size: 13px; font-size : 13px;
} }
.section:not(:last-child) { .section:not(:last-child) {
border-bottom: 1px solid #16212f; border-bottom : 1px solid #16212f;
} }
.infobox { .infobox {
border : #000 solid 1px; border : #000 solid 1px;
@ -213,36 +209,34 @@ border-radius : 5px;
box-shadow : 1px 1px 10px 1px #01070d; box-shadow : 1px 1px 10px 1px #01070d;
} }
.infobox h2 { .infobox h2 {
color: #e9aa61; color : #e9aa61;
} }
.infobox h3 { .infobox h3 {
color: #e9aa61; color : #e9aa61;
} }
#body-public footer p { #body-public footer p {
line-height:0.4em; line-height : 0.4em;
font-size: 14px; font-size : 14px;
} }
.sharing-entry__internal .avatar-external[data-v-363f2816] { .sharing-entry__internal .avatar-external[data-v-363f2816] {
background-color: #131d29 !important; background-color : #131d29 !important ;
border: #080d12 solid 1px; border : #080d12 solid 1px;
} }
.sharing-entry__inherited .avatar-shared[data-v-2ae2c800] { .sharing-entry__inherited .avatar-shared[data-v-2ae2c800] {
background-color: #131d29 !important; background-color : #131d29 !important ;
border: #080d12 solid 1px; border : #080d12 solid 1px;
} }
/* Videoplayer */
.modal-mask--dark[data-v-2a99be04] { .modal-mask--dark[data-v-2a99be04] {
background-color: rgba(3, 10, 16, 0.92) !important; background-color : rgb(3, 10, 16, 0.92) !important ;
} }
.modal-header .modal-title[data-v-2a99be04] { .modal-header .modal-title[data-v-2a99be04] {
color: #fff; color : #fff;
font-size: 19px !important; font-size : 19px !important ;
font-weight : 500 !important; font-weight : 500 !important ;
} }
.video-js .vjs-play-progress,.video-js .vjs-volume-level { .video-js .vjs-play-progress, .video-js .vjs-volume-level {
background-color: #e9aa61 !important; background-color : #e9aa61 !important ;
} }
.progressBar::-moz-progress-bar { .progressBar::-moz-progress-bar {
background-color: #e9aa61 !important; background-color : #e9aa61 !important ;
} }

22
tpDEsign/defaults.php

@ -128,14 +128,14 @@ class OC_Theme {
* Returns variables to overload defaults from core/css/variables.scss * Returns variables to overload defaults from core/css/variables.scss
* @return array * @return array
*/ */
public function getScssVariables() { public function getScssVariables() {
return [ return [
'color-primary' => '#f6964c', 'color-primary' => '#f6964c',
'color-main-background' => '#0e1621', 'color-main-background' => '#0e1621',
'color-background-dark' => '#16212f', 'color-background-dark' => '#16212f',
'color-background-darker' => '#102029', 'color-background-darker' => '#102029',
'color-border-darker' => '#080d12', 'color-border-darker' => '#080d12',
'font-face' => 'Saira, Saira Condensed, sans-serif' 'font-face' => 'Saira, Saira Condensed, sans-serif'
]; ];
} }
} }

Loading…
Cancel
Save