After Width: | Height: | Size: 604 B |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,27 @@
|
|||||||
|
Notification {
|
||||||
|
color: #D2D8E0;
|
||||||
|
border: 0px solid rgba(0, 0, 0, 50%);
|
||||||
|
background:rgba(47, 52, 63, 90%);
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
QLabel {
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#closeButton {
|
||||||
|
border: none;
|
||||||
|
padding: 2px;
|
||||||
|
qproperty-icon: url(lxqt-notificationd/close.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#closeButton:hover {
|
||||||
|
border: 0px solid rgba(0, 0, 0, 50%);
|
||||||
|
padding: 2px;
|
||||||
|
background:rgba(47, 52, 63, 90%);
|
||||||
|
qproperty-icon: url(lxqt-notificationd/close-hover.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
#appLabel {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 4.7 KiB |
@ -0,0 +1,527 @@
|
|||||||
|
/*
|
||||||
|
* General panel settings
|
||||||
|
*/
|
||||||
|
|
||||||
|
LXQtPanel #BackgroundWidget {
|
||||||
|
background:rgba(47, 52, 63, 95%);
|
||||||
|
}
|
||||||
|
QToolTip {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background:rgb(64, 69, 82);
|
||||||
|
padding: 2px;
|
||||||
|
margin: 0px;
|
||||||
|
color: #D2D8E0
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* General plugins settings
|
||||||
|
*/
|
||||||
|
|
||||||
|
Plugin,
|
||||||
|
LXQtPanelPlugin {
|
||||||
|
padding: 0;
|
||||||
|
spacing: 20px;
|
||||||
|
qproperty-moveMarkerColor: #f04a50;
|
||||||
|
}
|
||||||
|
|
||||||
|
Plugin > QWidget,
|
||||||
|
Plugin > QWidget > QWidget {
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Plugin > QToolButton,
|
||||||
|
Plugin > QWidget > QToolButton,
|
||||||
|
Plugin > QWidget > QToolButton > QWidget > QToolButton,
|
||||||
|
LXQtPanelPlugin > QToolButton {
|
||||||
|
margin: 0;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
qproperty-iconSize: 24px;
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Plugin > QToolButton:hover,
|
||||||
|
Plugin > QWidget > QToolButton:hover,
|
||||||
|
LXQtPanelPlugin > QToolButton:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(57, 61, 75);
|
||||||
|
}
|
||||||
|
|
||||||
|
Plugin > QToolButton:pressed,
|
||||||
|
Plugin > QWidget > QToolButton:pressed,
|
||||||
|
LXQtPanelPlugin > QToolButton:pressed {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Volume plugin
|
||||||
|
*/
|
||||||
|
|
||||||
|
VolumePopup {
|
||||||
|
background: rgb(56, 60, 74);
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumePopup > QPushButton {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: #444a58;
|
||||||
|
padding: 2px 10px;
|
||||||
|
margin: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
qproperty-iconSize: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumePopup > QPushButton:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
border-radius: 2px;
|
||||||
|
background: rgb(80, 86, 102);
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumePopup > QSlider::groove:vertical {
|
||||||
|
background: #2d303b;
|
||||||
|
width: 6px;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumePopup > QSlider::handle:vertical {
|
||||||
|
height: 10px;
|
||||||
|
width: 10px;
|
||||||
|
background: #444a58;
|
||||||
|
border-radius: 6px;
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
margin: 0 -4px; /* expand outside the groove */
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumePopup > QSlider::add-page:vertical {
|
||||||
|
background: rgb(82, 148, 226);
|
||||||
|
border-radius: 3px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumePopup > QSlider::sub-page:vertical {
|
||||||
|
background: rgb(45, 48, 59);
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Desktopswitch
|
||||||
|
*/
|
||||||
|
|
||||||
|
#DesktopSwitch QToolButton {
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#DesktopSwitch QToolButton:on {
|
||||||
|
background: rgb(56, 60, 74);
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
font: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#DesktopSwitch QToolButton:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#DesktopSwitch QToolButton:pressed {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#DesktopSwitch QToolButton[urgent="true"] {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: #5294e2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* QuickLaunch
|
||||||
|
*/
|
||||||
|
#QuickLaunchPlaceHolder {
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#QuickLaunch QToolButton{
|
||||||
|
border: 0px;
|
||||||
|
margin: 1px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#QuickLaunch QToolButton:hover{
|
||||||
|
border: 1px rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#QuickLaunch QToolButton:pressed {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* TaskBar
|
||||||
|
*/
|
||||||
|
#TaskBar QToolButton{
|
||||||
|
margin: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#TaskBar QToolButton:on{
|
||||||
|
/*border: 1px solid rgb(57, 61, 75);*/
|
||||||
|
border-bottom: 2px solid rgb(82, 148, 226);
|
||||||
|
background: rgb(39, 44, 53);
|
||||||
|
}
|
||||||
|
|
||||||
|
#TaskBar QToolButton:hover{
|
||||||
|
/*border: 1px solid rgb(39, 44, 53);*/
|
||||||
|
border-bottom: 2px solid rgb(79, 86, 101);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#TaskBar QToolButton:pressed {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#TaskBar QToolButton[urgent="true"] {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: #5294e2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#TaskBar LXQtGroupPopup {
|
||||||
|
background:rgba(47, 52, 63, 95%);
|
||||||
|
border: 1px solid rgba(39, 44, 53, 95%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#TaskBar LXQtGroupPopup QToolButton{
|
||||||
|
margin: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Calendar Widget
|
||||||
|
*/
|
||||||
|
|
||||||
|
QCalendarWidget #qt_calendar_navigationbar,
|
||||||
|
QCalendarWidget #qt_calendar_navigationbar * {
|
||||||
|
background-color:rgb(64, 69, 82);
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
QCalendarWidget #qt_calendar_monthbutton {
|
||||||
|
padding:2px;
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
QCalendarWidget #qt_calendar_monthbutton:hover,
|
||||||
|
QCalendarWidget #qt_calendar_prevmouth:hover,
|
||||||
|
QCalendarWidget #qt_calendar_nextmouth:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
QCalendarWidget #qt_calendar_monthbutton::menu-indicator {
|
||||||
|
image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QTableView {
|
||||||
|
background-color: rgb(64, 69, 82);
|
||||||
|
selection-background-color:#5294e2;
|
||||||
|
}
|
||||||
|
QCalendarWidget #qt_calendar_nextmonth {
|
||||||
|
max-height:20px;
|
||||||
|
min-height:20px;
|
||||||
|
qproperty-icon: url(calendar-popup/arrow-right.svg);
|
||||||
|
}
|
||||||
|
QCalendarWidget #qt_calendar_prevmonth {
|
||||||
|
max-height:20px;
|
||||||
|
min-height:20px;
|
||||||
|
qproperty-icon: url(calendar-popup/arrow-left.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QMenu {
|
||||||
|
margin: 4px;
|
||||||
|
background-color: rgb(56, 60, 74);
|
||||||
|
}
|
||||||
|
QCalendarWidget QMenu::item:selected {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: #5294e2;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QWidget {
|
||||||
|
alternate-background-color: rgb(64, 69, 82);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QAbstractItemView:enabled {
|
||||||
|
color: rgb(255, 253, 249);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QAbstractItemView:disabled {
|
||||||
|
color: rgb(141, 151, 162);
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget {
|
||||||
|
border: 1px solid rgb(43, 46, 57);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Clock
|
||||||
|
*/
|
||||||
|
#Clock:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#Clock > QWidget{
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
#Clock #TimeLabel{
|
||||||
|
color: #D2D8E0;
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
||||||
|
#Clock #DateLabel{
|
||||||
|
color: #D2D8E0;
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tray
|
||||||
|
*/
|
||||||
|
|
||||||
|
#Tray {
|
||||||
|
min-width: 6px;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
TrayIcon {
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Main menu
|
||||||
|
*/
|
||||||
|
|
||||||
|
#MainMenu {
|
||||||
|
margin: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
border: 0px solid rgba(0, 0, 0, 30%);
|
||||||
|
background: rgba(0, 0, 0, 0%);
|
||||||
|
qproperty-icon: url(mainmenu.svg);
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
#MainMenu:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu:pressed {
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu QMenu {
|
||||||
|
margin: 0px;
|
||||||
|
background-color: rgb(56, 60, 74);
|
||||||
|
}
|
||||||
|
#MainMenu QMenu::icon {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu QMenu::right-arrow {
|
||||||
|
image: url(arrow-right.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu QMenu::item {
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu QMenu::item:selected {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: #5294e2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#MainMenu QLineEdit {
|
||||||
|
background: rgb(64, 69, 82);
|
||||||
|
border: 2px solid #2D303B;
|
||||||
|
padding: 4px;
|
||||||
|
margin-button: 2px;
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-left: 2px;
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#MainMenu ActionView {
|
||||||
|
border: none;
|
||||||
|
background: palette(text);
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu ActionView::item {
|
||||||
|
border: 0px;
|
||||||
|
padding: 3px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MainMenu ActionView::item:selected, ActionView::item:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Mount plugin
|
||||||
|
*/
|
||||||
|
#LXQtMountPlugin {
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#LXQtMountPopup {
|
||||||
|
background-color: rgb(56, 60, 74);
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#LXQtMountPopup > MenuDiskItem {
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#LXQtMountPopup > MenuDiskItem:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#LXQtMountPopup #EjectButton,
|
||||||
|
#LXQtMountPopup #DiskButton {
|
||||||
|
qproperty-iconSize: 22px;
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
color: #D2D8E0;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#LXQtMountPopup #NoDiskLabel {
|
||||||
|
margin: 6px;
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Screensaver
|
||||||
|
*/
|
||||||
|
|
||||||
|
#PanelScreenSaver {
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#PanelScreenSaver > QToolButton:hover {
|
||||||
|
margin: 0;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#PanelScreenSaver > QToolButton:pressed {
|
||||||
|
margin: 2px;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ShowDesktop
|
||||||
|
*/
|
||||||
|
#ShowDesktop > QToolButton:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* KbIndicator
|
||||||
|
*/
|
||||||
|
#KbIndicator > QLabel {
|
||||||
|
padding: 3px;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
#KbIndicator > QLabel:disabled {
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#KbIndicator > QLabel:enabled {
|
||||||
|
background: #383C4A;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SysStat
|
||||||
|
*/
|
||||||
|
|
||||||
|
#SysStat {
|
||||||
|
padding: 2px 2px 2px 2px;
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#SysStat > QLabel {
|
||||||
|
font-size: 6pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#SysStat_Graph {
|
||||||
|
qproperty-gridColor: #272C35;
|
||||||
|
qproperty-titleColor: #D2D8E0;
|
||||||
|
qproperty-cpuSystemColor: #46A1B1;
|
||||||
|
qproperty-cpuUserColor: #689AC3;
|
||||||
|
qproperty-cpuNiceColor: #529EBD;
|
||||||
|
qproperty-cpuOtherColor: #4EA39A;
|
||||||
|
qproperty-frequencyColor: #46A2AA;
|
||||||
|
qproperty-memAppsColor: #46A1B1;
|
||||||
|
qproperty-memBuffersColor: #689AC3;
|
||||||
|
qproperty-memCachedColor: #4EA39A;
|
||||||
|
qproperty-swapUsedColor: #529EBD;
|
||||||
|
qproperty-netReceivedColor: #46A1B1;
|
||||||
|
qproperty-netTransmittedColor: #4EA39A;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* WorldClock
|
||||||
|
*/
|
||||||
|
#WorldClock:hover {
|
||||||
|
border: 1px solid rgb(39, 44, 53);
|
||||||
|
background: rgb(57, 61, 75);
|
||||||
|
}
|
||||||
|
|
||||||
|
#WorldClockContent {
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-left: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* CPU monitor
|
||||||
|
*/
|
||||||
|
|
||||||
|
#LXQtCpuLoad {
|
||||||
|
qproperty-fontColor: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Spacer
|
||||||
|
*/
|
||||||
|
|
||||||
|
#Spacer {
|
||||||
|
background-position: center center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Spacer[type="lined"] {
|
||||||
|
background-image: url(/spacer-plugin/spacer-line.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#Spacer[type="dotted"] {
|
||||||
|
background-image: url(/spacer-plugin/spacer-dots.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#Spacer[orientation="horizontal"] {
|
||||||
|
background-repeat: repeat-y;
|
||||||
|
margin-top: 2px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Spacer[orientation="vertical"] {
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
/*
|
||||||
|
* Panel
|
||||||
|
*/
|
||||||
|
|
||||||
|
#panel {
|
||||||
|
background:rgba(47, 52, 63, 85%);
|
||||||
|
border: 1px solid rgba(39, 44, 53, 85%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Buttons
|
||||||
|
*/
|
||||||
|
|
||||||
|
QToolButton::menu-indicator {
|
||||||
|
image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#closeButton {
|
||||||
|
qproperty-icon: url(lxqt-runner/close.svg);
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
#closeButton:hover{
|
||||||
|
border: 0px solid rgba(0, 0, 0, 50%);
|
||||||
|
qproperty-icon: url(lxqt-runner/close-hover.svg);
|
||||||
|
}
|
||||||
|
|
||||||
|
#actionButton {
|
||||||
|
qproperty-icon: url(lxqt-runner/down.svg);
|
||||||
|
color: rgba(41, 41, 41, 0%);
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
#actionButton:hover{
|
||||||
|
qproperty-icon: url(lxqt-runner/down-hover.svg);
|
||||||
|
border: 0px solid rgba(0, 0, 0, 50%);
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Search results (For some reason the #commandList does no take the styles, just the background and the border can be changed)
|
||||||
|
*/
|
||||||
|
|
||||||
|
QListView {
|
||||||
|
border: 1px solid rgba(39, 44, 53, 85%);
|
||||||
|
background:rgba(64, 69, 82, 85%);
|
||||||
|
}
|
||||||
|
|
||||||
|
QListView::item:alternate {
|
||||||
|
}
|
||||||
|
|
||||||
|
QListView::item:selected {
|
||||||
|
}
|
||||||
|
|
||||||
|
QListView::item:selected:!active {
|
||||||
|
}
|
||||||
|
|
||||||
|
QListView::item:selected:active {
|
||||||
|
}
|
||||||
|
|
||||||
|
QListView::item:hover {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,2 @@
|
|||||||
|
wallpapers/size=1
|
||||||
|
wallpapers/1/file=wallpaper.png
|
After Width: | Height: | Size: 1.9 MiB |