12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- QWidget
- {
- border-radius: 0px;
- background: #373639;
- }
- QListWidget
- {
- font-family:"Source Han Sans CN";
- font-size: 14px;
- font-weight: 400;
- color: rgba(255,255,255,0.9);
- border: none;
- border-right: 1px solid rgba(0, 0, 0, 0.06);
- background: #747578;
- outline: 0px;
- }
- QListView::item:hover
- {
- /* background-color: rgb(245,245,245); */
- background-color: rgb(227, 238, 255);
- font-family:"Source Han Sans CN";
- font-size: 14px;
- font-weight: 400;
- color: "#3A3F63";
- }
- QListView::item:selected
- {
- /* background-color: rgb(227, 238, 255); */
- background-color: #438EFF;
- font-family:"Source Han Sans CN";
- font-size: 14px;
- font-weight: 500;
- color: rgba(255,255,255,0.9);
- outline: none;
- }
- QScrollBar:vertical
- {
- border:none;
- background-color: #e2e2e2;
- width: 4px;
- }
- QScrollBar::handle:vertical
- {
- background: #e2e2e2;
- border-radius: 2px;
- }
- QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical
- {
- background: #ffffff;/*transparent;*/
- border: none;
- }
- QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
- {
- background: #ffffff;/*transparent;*/
- border: none;
- }
|