Fixes in admin.css loading layer
This commit is contained in:
parent
2464db78d2
commit
27300bb361
2 changed files with 12 additions and 1 deletions
|
|
@ -409,6 +409,13 @@ p {
|
|||
|
||||
}
|
||||
|
||||
.dark .form textarea {
|
||||
|
||||
background-color: #1e202a;
|
||||
color: #fbfbfb;
|
||||
|
||||
}
|
||||
|
||||
.form label {
|
||||
display: block;
|
||||
/*width: 150px;*/
|
||||
|
|
@ -995,7 +1002,7 @@ a.form_button_tab:hover
|
|||
|
||||
#layer_loading {
|
||||
|
||||
z-index:50000;
|
||||
z-index:99999;
|
||||
/*background-color:rgba(0,0,0,0.4);*/
|
||||
/*opacity:0.5;*/
|
||||
position:absolute;
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@ from importlib import import_module
|
|||
from paramecio2.libraries.slugify import slugify
|
||||
import json
|
||||
import subprocess
|
||||
#from colorama import init, Fore, Back, Style
|
||||
import colorama
|
||||
|
||||
sys.path.insert(0, os.path.realpath('.'))
|
||||
|
||||
|
|
@ -32,6 +34,8 @@ def start():
|
|||
|
||||
args=parser.parse_args()
|
||||
|
||||
colorama.init()
|
||||
|
||||
workdir='.'
|
||||
|
||||
os.chdir('./modules/')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue