2022-03-14 18:07:28 +08:00
|
|
|
/*------1.silver-->grey--------------------------*/
*{background-color:#3c3c3c; color:#fcfcfc;margin:0;font-size:16px;}
QWidget#need_border{border:1px solid white}
QTabBar::tab {
height:60px;
width:300px;
font-size: 25px;
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #505050, stop: 1.0 #333333);
border: 2px solid #505050;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
min-width: 8ex;
padding: 2px;
}
QTabBar::tab:selected, QTabBar::tab:hover {
border-top:5px solid #4a88c7;
background: #505050;}
QTabWidget::pane{margin:0}
QPlainTextEdit{border:0px}
QGroupBox{border:0px}
QLabel{color:#fcfcfc; font-weight:bold; font-size:16px;}
QLineEdit{min-height:36px;max-height:36px; border:none;border-bottom:1px solid #505050;color:grey;}
QLineEdit:enabled{background-color: #505050;border-bottom-color:#4a88c7;color:#fcfcfc;}
QDateEdit{min-height:36px;max-height:36px; border:none;border-bottom:1px solid #505050;color:grey;border-radius:3px;}
QDateEdit:enabled{background-color: #505050;border-bottom-color:#4a88c7;color:#fcfcfc;}
QTextEdit{ border:1px solid #505050;color:grey;border-radius:3px;}
QTextEdit:enabled{background-color: #505050; border:1px solid #4a88c7;color:#fcfcfc;}
QComboBox{text-align:center;min-height:36px;max-height:36px; border:1px solid #505050}
QComboBox:enabled{background-color: #505050}
QComboBox::drop-down{width:20px}
QComboBox QAbstractItemView{min-width:120px;}
QComboBox QAbstractItemView::item {min-height:60px;max-height:60px; border:1px solid white;}
QWidget QToolButton#editvalBtn{font-size:20px;font-weight:normal;border:1px solid darkgray;background: #505050;}
QWidget QToolButton#showeditBtn{border-top:1px solid darkgray;
border-bottom:1px solid darkgray;
border-left:1px solid darkgray;
border-radius: 0;
border-bottom-left-radius:10px;
font-size:20px;
font-weight:normal;
background: #505050; }
QWidget QToolButton#hideeditBtn{border-top:1px solid darkgray;
border-bottom:1px solid darkgray;
border-left:1px solid darkgray;
border-radius: 0;
border-top-left-radius:10px;
border-bottom-left-radius:10px;
font-size:20px;
font-weight:normal;background: #505050; }
QWidget QToolButton{border:none;border-radius:10%;font-size:26px;
/*background: #505050;*/
background: qlineargradient(spread:pad,x1: 0.5, y1: 0, x2: 0.5, y2: 1.0,stop:0 #404040, stop:0.5 #505050,stop:1.0 #404040);
font-weight:Bold;padding:5px;}
QWidget QToolButton:disabled{border:none;color:#606060;background:#3c3c3c}
QWidget QToolButton:hover{background:#505050;}
QWidget QToolButton:checked{border:5px solid darkorange;padding:0px;}
QPushButton{border:1px solid #505050 ;padding-left:50px;padding-right:50px; border-radius:5px; min-height:28px; max-height:28px;
background:qlineargradient(spread:pad, x1:0.50, y1:0, x2:0.5, y2:1, stop:0 #505050, stop:1 #606060);}
QListView{border:none;margin:5px; font-weight:bold}
QListView::item{
/*background:#4d4d4d;*/
background: qlineargradient(spread:pad,x1: 0.5, y1: 0, x2: 0.5, y2: 1.0,stop:0 #404040, stop:0.5 #505050,stop:1.0 #404040);
min-height:30px; border:1px solid #505050; border-radius:5px}
QListView::item:selected{background:#365880;font-weight:bold;color:#fcfcfc;}
/*QListView::item:selected{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #ABAFE5, stop: 1 #8588B2);
border:1px solid #505050;
}*/
QHeaderView::down-arrow {
subcontrol-position: center right;
image: url(":/icons/arrow-down.png");
padding-right: 8px;
}
QHeaderView::up-arrow {
subcontrol-position: center right;
image: url(":/icons/arrow-up.png");
padding-right: 8px;
}
QHeaderView::section{background-color:#595959;min-height:50px;max-height:50px;font-weight:Bold; font-size:16px; border:1px solid #323232;}
QHeaderView::section:horizontal{border-bottom: 1px solid rgb(0,170,255);}
QHeaderView::section:vertical{min-height:36px;max-height:36px;}
QTableView{border:none;alternate-background-color: #595959;selection-color:#fcfcfc;selection-background-color:#0078d8}
/*-----------Specific---------------*/
QLabel#sliderPickerLabel{color:grey;
|