常用QSS记录

总结

QTextEdit设置背景色透明无效

直接调用background:transparent;无效。需要添加border:none;

基本状态

状态使用 :(单冒号) 来区分每一个状态

  • hover 鼠标滑过时候的状态
  • pressed 鼠标按下状态

QSlider

//水平方向
QSlider::groove:horizontal {
border: 1px solid #4A708B;
background: #C0C0C0;
height: 5px;
border-radius: 1px;
padding-left:-1px;
padding-right:-1px;
}

QSlider::sub-page:horizontal {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, 
    stop:0 #B1B1B1, stop:1 #c4c4c4);
background: qlineargradient(x1: 0, y1: 0.2, x2: 1, y2: 1,
    stop: 0 #5DCCFF, stop: 1 #1874CD);
border: 1px solid #4A708B;
height: 10px;
border-radius: 2px;
}

QSlider::add-page:horizontal {
background: #575757;
border: 0px solid #777;
height: 10px;
border-radius: 2px;
}

QSlider::handle:horizontal 
{
    background: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, 
    stop:0.6 #45ADED, stop:0.778409 rgba(255, 255, 255, 255));

    width: 11px;
    margin-top: -3px;
    margin-bottom: -3px;
    border-radius: 5px;
}

QSlider::handle:horizontal:hover {
    background: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.6 #2A8BDA, 
    stop:0.778409 rgba(255, 255, 255, 255));

    width: 11px;
    margin-top: -3px;
    margin-bottom: -3px;
    border-radius: 5px;
}

QSlider::sub-page:horizontal:disabled {
background: #00009C;
border-color: #999;
}

QSlider::add-page:horizontal:disabled {
background: #eee;
border-color: #999;
}

QSlider::handle:horizontal:disabled {
background: #eee;
border: 1px solid #aaa;
border-radius: 4px;
}

QScrollBar

QScrollBar:vertical/*垂直滚动条整个区域*/
{
     padding:8px 0px 8px 0px;/*预留出的上下两个按钮的空间*/
    background-color:red;
    min-width:10px;
    max-width:10px;
}
QScrollBar::handle:vertical/*垂直滚动条 中间滑块*/
{
    min-width:10px;
    max-width:10px;
   background-color:yellow; 
 }
 QScrollBar::add-line:vertical/*滑块下方点击按钮*/
 {
     min-height:20px;
     max-height:20px;
        background-color:rgb(0,255,255); 
 }
  QScrollBar::sub-line:vertical/*滑块上方点击按钮*/
 {
     min-height:20px;
     max-height:20px;
        background-color:rgb(0,255,255); 
 }
  QScrollBar::add-page:vertical/*滑块下方按钮到滑块下方区域*/
 {
     min-height:20px;
     max-height:20px;
        background-color:rgb(0,255,0); 
 }
  QScrollBar::sub-page:vertical/*滑块上方按钮到滑块上方区域*/
 {
     min-height:20px;
     max-height:20px;
        background-color:rgb(0,255,255); 
 }
 //垂直方向
 QSlider::groove:vertical {
border: 1px solid #4A708B;
background: #C0C0C0;
width: 5px;
border-radius: 1px;
padding-left:-1px;
padding-right:-1px;
padding-top:-1px;
padding-bottom:-1px;
}

QSlider::sub-page:vertical {
background: #575757;
border: 1px solid #4A708B;
border-radius: 2px;
}

QSlider::add-page:vertical {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, 
    stop:0 #c4c4c4, stop:1 #B1B1B1);
background: qlineargradient(x1: 0, y1: 0.2, x2: 1, y2: 1,
    stop: 0 #5DCCFF, stop: 1 #1874CD);
border: 0px solid #777;
width: 10px;
border-radius: 2px;
}

QSlider::handle:vertical 
{
	background: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.6 #45ADED, 
<span>	</span>stop:0.778409 rgba(255, 255, 255, 255));

    height: 11px;
    margin-left: -3px;
    margin-right: -3px;
    border-radius: 5px;
}

QSlider::sub-page:vertical:disabled {
background: #00009C;
border-color: #999;
}

QSlider::add-page:vertical:disabled {
background: #eee;
border-color: #999;
}

QSlider::handle:vertical:disabled {
background: #eee;
border: 1px solid #aaa;
border-radius: 4px;
}

QCheckBox

QCheckBox::indicator   /*QCheckBox可勾选区域*/
{
	width:20px;
	height:16px;
}
QCheckBox::indicator:checked /*QCheckBox勾选*/
{
	border-image:url(image/selected.png);
}
QCheckBox::indicator:unchecked /*QCheckBox未勾选*/
{
	border-image:url(image/unSelect.png);
}
QCheckBox::indicator:indeterminate  /*QCheckBox半勾选*/
{
    background-color:red;
 }
QScrollBar:horizontal
{
     padding:0px 8px 0px 8px;
    background-color:red;
    min-height:10px;
    max-height:10px;
}
QScrollBar::handle:horizontal
{
    min-height:10px;
    max-height:10px;
   background-color:rgb(152,152,1); 
 }
 QScrollBar::add-line:horizontal
 {
     min-width:20px;
     max-width:20px;
        background-color:rgb(255,0,0); 
 }
 QScrollBar::sub-line:horizontal
 {
     min-width:20px;
     max-width:20px;
        background-color:rgb(255,0,0); 
 }
  QScrollBar::add-page:horizontal
 {
     min-height:20px;
     max-height:20px;
        background-color:rgb(0,255,0); 
 }
  QScrollBar::sub-page:horizontal
 {
     min-height:20px;
     max-height:20px;
        background-color:rgb(0,255,255); 
 }

QComboBox

QTableView

QTableView {
    color: white;                                       /*表格内文字颜色*/
    gridline-color: black;                              /*表格内框颜色*/
    background-color: rgb(108, 108, 108);               /*表格内背景色*/
    alternate-background-color: rgb(64, 64, 64);
    selection-color: white;                             /*选中区域的文字颜色*/
    selection-background-color: rgb(77, 77, 77);        /*选中区域的背景色*/
    border: 2px groove gray;
    border-radius: 0px;
    padding: 2px 4px;
}

QCalendarWidget


QCalendarWidget QTableView
{
    color:#ffffff;    
   alternate-background-color:#3275d4;
    background-color:#3275d4;
}
QCalendarWidget QTableView
{
    selection-color: yellow;
    selection-background-color: rgb(77, 77, 77);

 }
 QToolButton#qt_calendar_nextmonth 
{
     background-color:red;
}
 QToolButton#qt_calendar_prevmonth
{
     background-color:red;
}

 QToolButton#qt_calendar_monthbutton
{
    background-color:yellow;
 }
  QToolButton#qt_calendar_yearbutton 
{
    background-color:rgb(0,255,255);
 }
 
QSpinBox#qt_calendar_yearedit
{
    background-color:#3275d4;
    color:yellow;
 } 
 
 QWidget#qt_calendar_navigationbar
 {
     color:yellow;
     background-color:yellow;
 }

QSpinBox

QSpinBox::up-button/*右侧上方点击按钮*/
{

}
QSpinBox::down-button/*右侧下方点击按钮*/
{

}
QSpinBox::up-arrow/*右侧上方点击按钮中的小三角区域*/
{

}
QSpinBox::down-arrow/*右侧下方点击按钮中的小三角区域*/
{

}

QTabWidget

QTabBar::tab  /*tab页的颜色*/
{
    color:red;
    background-color:yellow;
 }
 QTabBar::tab:hover
 {
        background-color:red;
 }
 
  QTabBar::tab:selected/*当前选择的tab页*/
 {
        background-color:white;
 }
 QTabWidget:pane /*QTabWidget 中间窗体的背景色*/
{
 border:none;   
 }

QToolButton

  QToolButton { /* all types of tool button */
      border: 2px solid #8f8f91;
      border-radius: 6px;
      background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
                                        stop: 0 #f6f7fa, stop: 1 #dadbde);
  }

  QToolButton[popupMode="1"] { /* only for MenuButtonPopup */
      padding-right: 20px; /* make way for the popup button */
  }

  QToolButton:pressed {
      background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
                                        stop: 0 #dadbde, stop: 1 #f6f7fa);
  }

  /* the subcontrols below are used only in the MenuButtonPopup mode */
  //只对 弹出方式为 MenuButtonPopup 的QToolButton有效
  QToolButton::menu-button {
      border: 2px solid gray;
      border-top-right-radius: 6px;
      border-bottom-right-radius: 6px;
      /* 16px width + 4px for border = 20px allocated above */
      width: 16px;
  }

  QToolButton::menu-arrow {
      image: url(downarrow.png);
  }

使用记录

b ackground-image与border-image 的区别

background-image 不会拉伸图片
border-image 会拉伸图片

QSS中的注释

使用 // 来注释 不要使用 // 这种,否则导致后续样式无效**

QLineEdit 设置 background:transparent; 无效,可能是没有设置 # border 属性
QLineEdit 设置 padding-left 的时候,会把原来的大小撑大
QToolButton 中的menu设置样式无效
可能是 menu没有作为子窗体 无法继承自父窗体样式

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一路初心向前

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值