1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-09-11 19:32:24 +02:00

import placeholder in all bases

This commit is contained in:
GilbN 2022-04-22 21:56:42 +02:00
parent affa3f8984
commit 51c3e69582
39 changed files with 66 additions and 352 deletions

View File

@ -504,7 +504,7 @@ hr {
} }
.close:hover { .close:hover {
var(--text) !important; color: var(--text-hover) !important;
text-decoration: none; text-decoration: none;
} }

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none; outline: none;
} }
@ -579,42 +581,6 @@ html[class*="theme_"] .table td [class*="fa-"] {
color: rgb(var(--accent-color)); color: rgb(var(--accent-color));
} }
/* PLACEHOLDER TEXT */
input::-webkit-input-placeholder {
color: var(--text);
}
input:focus::-webkit-input-placeholder {
color: #000;
}
/* Firefox < 19 */
input:-moz-placeholder {
color: var(--text);
}
input:focus:-moz-placeholder {
color: #000;
}
/* Firefox > 19 */
input::-moz-placeholder {
color: var(--text);
}
input:focus::-moz-placeholder {
color: #000;
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
color: var(--text);
}
input:focus:-ms-input-placeholder {
color: #000;
}
/* ADMIN PAGE */ /* ADMIN PAGE */
.bg-light { .bg-light {

View File

@ -13,6 +13,9 @@
/* "Re-skin" of CaliBlur https://github.com/leram84/layer.Cake/tree/master/caliBlur */ /* "Re-skin" of CaliBlur https://github.com/leram84/layer.Cake/tree/master/caliBlur */
/* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */ /* Set theme to CaliBlur in UI Configuration -> View Configuration -> Theme -> CaliBlur -> Submit */
/* APP VARS*/ /* APP VARS*/
@import url("/css/defaults/placeholders.css");
:root { :root {
--color-background: var(--main-bg-color); --color-background: var(--main-bg-color);
--color-primary: rgb(var(--accent-color)); --color-primary: rgb(var(--accent-color));

View File

@ -13,6 +13,7 @@
/* Based on https://github.com/HalianElf/Deluge-Dark/blob/master/deluge.css */ /* Based on https://github.com/HalianElf/Deluge-Dark/blob/master/deluge.css */
@import url('https://fonts.googleapis.com/css?family=Roboto'); @import url('https://fonts.googleapis.com/css?family=Roboto');
@import url("/css/defaults/placeholders.css");
html { html {
background: var(--main-bg-color); background: var(--main-bg-color);

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
:root { :root {
--scheme-main-ter: var(--main-bg-color); --scheme-main-ter: var(--main-bg-color);
--text-strong-color: var(--button-text-hover); --text-strong-color: var(--button-text-hover);

View File

@ -10,6 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);
@ -146,27 +147,6 @@ label {
color: var(--accent-color-hover); color: var(--accent-color-hover);
} }
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-moz-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-ms-input-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
::-webkit-input-placeholder {
color: var(--text) !important;
opacity: .5;
}
/* CARDS */ /* CARDS */
.card { .card {
background: transparent; background: transparent;

View File

@ -1,3 +1,5 @@
@import url("/css/defaults/placeholders.css");
:root { :root {
--theme-primary-color: var(--accent-color); --theme-primary-color: var(--accent-color);
--theme-text-color: var(--text); --theme-text-color: var(--text);

View File

@ -10,41 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
/* PLACEHOLDERS */ @import url("/css/defaults/placeholders.css");
input::-webkit-input-placeholder {
color: var(--text);
}
input:focus::-webkit-input-placeholder {
color: var(--text-hover);
}
/* Firefox < 19 */
input:-moz-placeholder {
color: var(--text);
}
input:focus:-moz-placeholder {
color: var(--text-hover);
}
/* Firefox > 19 */
input::-moz-placeholder {
color: var(--text);
}
input:focus::-moz-placeholder {
color: var(--text-hover);
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
color: var(--text);
}
input:focus:-ms-input-placeholder {
color: var(--text-hover);
}
.message { .message {
color: var(--text-hover); color: var(--text-hover);

View File

@ -12,6 +12,8 @@
/* MOBILE */ /* MOBILE */
@import url("/css/defaults/placeholders.css");
@media (max-width: 720px) { @media (max-width: 720px) {
.modal__body, .modal__body,
@ -287,20 +289,6 @@ p,
border-color: var(--button-color-hover); border-color: var(--button-color-hover);
} }
::placeholder {
color: var(--text) !important;
}
:-ms-input-placeholder {
color: var(--text) !important;
}
::-webkit-input-placeholder {
color: var(--text) !important;
}
.error { .error {
background: #f34570; background: #f34570;
border-radius: 3px; border-radius: 3px;

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;

View File

@ -12,6 +12,8 @@
@import url("/css/base/gitea/chroma.css"); @import url("/css/base/gitea/chroma.css");
@import url("/css/base/gitea/monaco_vs_dark.css"); @import url("/css/base/gitea/monaco_vs_dark.css");
@import url("/css/defaults/placeholders.css");
:root { :root {
--color-text: var(--text); --color-text: var(--text);
--color-caret: white; --color-caret: white;
@ -1553,28 +1555,6 @@ textarea:hover {
background-color: rgb(0 0 0 / 0.25); background-color: rgb(0 0 0 / 0.25);
} }
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;
opacity: .5;
}
:-moz-placeholder {
color: var(--text) !important;
opacity: .5;
}
:-ms-input-placeholder {
color: var(--text) !important;
opacity: .5;
}
::-webkit-input-placeholder {
color: var(--text) !important;
opacity: .5;
}
/* HIGHLIGHTING */ /* HIGHLIGHTING */
::-webkit-selection { ::-webkit-selection {
background-color: rgb(var(--accent-color)) !important; background-color: rgb(var(--accent-color)) !important;

View File

@ -10,6 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none !important; outline: none !important;
@ -47,41 +48,6 @@ div.displayMiddle {
-o-background-size: auto, cover; -o-background-size: auto, cover;
} }
input::-webkit-input-placeholder {
color: var(--text) !important;
}
input:focus::-webkit-input-placeholder {
color: var(--text-hover) !important;
}
/* Firefox < 19 */
input:-moz-placeholder {
color: var(--text) !important;
}
input:focus:-moz-placeholder {
color: var(--text-hover) !important;
}
/* Firefox > 19 */
input::-moz-placeholder {
color: var(--text) !important;
}
input:focus::-moz-placeholder {
color: var(--text-hover) !important;
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
color: var(--text) !important;
}
input:focus:-ms-input-placeholder {
color: var(--text-hover) !important;
}
/* Scrollbar */ /* Scrollbar */
@media only screen and (min-width: 768px) { @media only screen and (min-width: 768px) {
html { html {

View File

@ -9,6 +9,9 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none !important; outline: none !important;
} }

View File

@ -1,3 +1,5 @@
@import url("/css/defaults/placeholders.css");
:root { :root {
--theme-primary-color: var(--accent-color); --theme-primary-color: var(--accent-color);
--theme-text-color: var(--text); --theme-text-color: var(--text);

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;
@ -228,26 +230,4 @@ ul li:hover {
color: var(--text-hover); color: var(--text-hover);
background-color: #97b3d2; background-color: #97b3d2;
border-color: #97b3d2 border-color: #97b3d2
}
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-moz-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-ms-input-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
::-webkit-input-placeholder {
color: var(--text) !important;
opacity: .5;
} }

View File

@ -9,6 +9,9 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none !important; outline: none !important;
} }
@ -55,42 +58,6 @@ a:hover,
color: var(--link-color-hover); color: var(--link-color-hover);
} }
input::-webkit-input-placeholder {
color: var(--text-muted) !important;
}
input:focus::-webkit-input-placeholder {
color: var(--text-hover) !important;
}
/* Placeholders */
/* Firefox < 19 */
input:-moz-placeholder {
color: var(--text-muted) !important;
}
input:focus:-moz-placeholder {
color: var(--text-hover) !important;
}
/* Firefox > 19 */
input::-moz-placeholder {
color: var(--text-muted) !important;
}
input:focus::-moz-placeholder {
color: var(--text-hover) !important;
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
color: var(--text-muted) !important;
}
input:focus:-ms-input-placeholder {
color: var(--text-hover) !important;
}
/* SCROLLBAR */ /* SCROLLBAR */
@media only screen and (min-width: 768px) { @media only screen and (min-width: 768px) {
html { html {

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
html, html,
body { body {
background: var(--main-bg-color) !important; background: var(--main-bg-color) !important;

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none; outline: none;

View File

@ -10,6 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body, body,
[class*="styled__SocialMediaContainer-"] { [class*="styled__SocialMediaContainer-"] {

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;

View File

@ -10,7 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(/css/defaults/placeholders.css); @import url("/css/defaults/placeholders.css");
body, body,
html { html {

View File

@ -10,6 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none !important; outline: none !important;

View File

@ -1,4 +1,5 @@
@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900); @import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900);
@import url("/css/defaults/placeholders.css");
/*Theme Colors*/ /*Theme Colors*/
/*bootstrap Color*/ /*bootstrap Color*/
/*Normal Color*/ /*Normal Color*/
@ -400,42 +401,6 @@ pre {
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0); box-shadow: inset 0 0 3px rgba(0, 0, 0, 0);
} }
/* PLACEHOLDERS */
input::-webkit-input-placeholder {
color: var(--text) !important;
}
input:focus::-webkit-input-placeholder {
color: var(--text-hover) !important;
}
/* Firefox < 19 */
input:-moz-placeholder {
color: var(--text) !important;
}
input:focus:-moz-placeholder {
color: var(--text-hover) !important;
}
/* Firefox > 19 */
input::-moz-placeholder {
color: var(--text) !important;
}
input:focus::-moz-placeholder {
color: var(--text-hover) !important;
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
color: var(--text) !important;
}
input:focus:-ms-input-placeholder {
color: var(--text-hover) !important;
}
/* Scrollbar */ /* Scrollbar */
@media only screen and (min-width: 768px) { @media only screen and (min-width: 768px) {
html { html {

View File

@ -1,3 +1,5 @@
@import url("/css/defaults/placeholders.css");
/* TEXT */ /* TEXT */
[class*="text-gray-"]:not(button:disabled):not(button) { [class*="text-gray-"]:not(button:disabled):not(button) {
color: var(--text); color: var(--text);

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none; outline: none;
} }
@ -478,25 +480,4 @@ a.rbc-show-more {
.calendar--event p { .calendar--event p {
color: var(--text-hover) !important; color: var(--text-hover) !important;
}
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;
opacity: .5;
}
:-moz-placeholder {
color: var(--text) !important;
opacity: .5;
}
:-ms-input-placeholder {
color: var(--text) !important;
opacity: .5;
}
::-webkit-input-placeholder {
color: var(--text) !important;
opacity: .5;
} }

View File

@ -10,7 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(/css/defaults/placeholders.css); @import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color) !important; background: var(--main-bg-color) !important;

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none; outline: none;
} }

View File

@ -11,6 +11,7 @@
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(https://use.fontawesome.com/releases/v5.0.7/css/all.css); @import url(https://use.fontawesome.com/releases/v5.0.7/css/all.css);
@import url("/css/defaults/placeholders.css");
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 10px; width: 10px;

View File

@ -10,7 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(/css/defaults/placeholders.css); @import url("/css/defaults/placeholders.css");
body { body {
color: var(--text); color: var(--text);

View File

@ -11,7 +11,7 @@
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(https://use.fontawesome.com/releases/v5.15.1/css/all.css); @import url(https://use.fontawesome.com/releases/v5.15.1/css/all.css);
@import url(/css/defaults/placeholders.css); @import url("/css/defaults/placeholders.css");
body, body,
.tableScrollContainer, .tableScrollContainer,

View File

@ -12,6 +12,7 @@
/* Based on https://github.com/themightykitten/ruTorrent-MaterialDesign */ /* Based on https://github.com/themightykitten/ruTorrent-MaterialDesign */
@import url(https://use.fontawesome.com/releases/v5.0.7/css/all.css); @import url(https://use.fontawesome.com/releases/v5.0.7/css/all.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,600,700,300); @import url(https://fonts.googleapis.com/css?family=Roboto:400,600,700,300);
@import url("/css/defaults/placeholders.css");
@font-face { @font-face {
font-family: 'Roboto' !important font-family: 'Roboto' !important

View File

@ -9,7 +9,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(/css/defaults/placeholders.css); @import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color) !important; background: var(--main-bg-color) !important;
@ -819,19 +819,6 @@ table {
border-radius: 3px !important; border-radius: 3px !important;
} }
.form-control::-moz-placeholder {
color: var(--text-muted) !important;
opacity: 1
}
.form-control:-ms-input-placeholder {
color: var(--text-muted) !important;
}
.form-control::-webkit-input-placeholder {
color: var(--text-muted) !important;
}
.col2 p, .col2 p,
.col2-cats { .col2-cats {
color: var(--text-hover); color: var(--text-hover);

View File

@ -10,7 +10,7 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(/css/defaults/placeholders.css); @import url("/css/defaults/placeholders.css");
:root { :root {
--v-primary-base: rgb(var(--accent-color)); --v-primary-base: rgb(var(--accent-color));

View File

@ -9,6 +9,9 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url(https://use.fontawesome.com/releases/v5.0.7/css/all.css); @import url(https://use.fontawesome.com/releases/v5.0.7/css/all.css);
@import url("/css/defaults/placeholders.css");
* { * {
outline: none !important; outline: none !important;

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
* { * {
outline: none; outline: none;
} }
@ -651,18 +653,6 @@ div.shade-black {
background-color: rgb(0 0 0 / 15%) !important; background-color: rgb(0 0 0 / 15%) !important;
} }
::placeholder {
color: var(--text-muted) !important;
}
:-ms-input-placeholder {
color: var(--text-muted) !important;
}
::-webkit-input-placeholder {
color: var(--text-muted) !important;
}
/* MODAL */ /* MODAL */
/* .sweet-alert { /* .sweet-alert {

View File

@ -12,6 +12,8 @@
/* MOBILE */ /* MOBILE */
@import url("/css/defaults/placeholders.css");
@media (max-width: 720px) { @media (max-width: 720px) {
.modal__body, .modal__body,

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
body { body {
background: var(--main-bg-color); background: var(--main-bg-color);
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;
@ -368,25 +370,4 @@ body>div.content.ng-scope>div>div.pushTopMinor.ng-scope>div:nth-child(2)>div.pla
.logs .logDetails table tr:nth-child(even) { .logs .logDetails table tr:nth-child(even) {
background-color: rgb(255 255 255 / 8%); background-color: rgb(255 255 255 / 8%);
}
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-moz-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-ms-input-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
::-webkit-input-placeholder {
color: var(--text) !important;
opacity: .5;
} }

View File

@ -10,6 +10,8 @@
/* Made by @gilbN */ /* Made by @gilbN */
/* https://github.com/gilbN/theme.park */ /* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
.bg-light { .bg-light {
background: var(--main-bg-color) !important; background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat; background-repeat: repeat, no-repeat;
@ -412,25 +414,4 @@ textarea.form-control:focus {
background: rgba(0, 0, 0, .5); background: rgba(0, 0, 0, .5);
-webkit-backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-moz-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
:-ms-input-placeholder {
color: var(--text) !important;
opacity: .5 !important;
}
::-webkit-input-placeholder {
color: var(--text) !important;
opacity: .5;
} }