3 Star 2 Fork 0

ma4567/database_controller_for_gbase8c

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NormalStyle.qss 2.59 KB
一键复制 编辑 原始数据 按行查看 历史
ma4567 提交于 2024-09-11 16:21 . add qss and style color api
QListWidget
{
border:0px;
background-color:rgb(220,220,220);
}
/*列表每个item的默认属性值*/
QListWidget::Item
{
border:1px;
background-color:white;
}
/*列表每个item在鼠标移到上面时的属性值*/
QListWidget::Item:hover
{
border:0px;
color:white;
background-color:#62a8fe;
}
/*列表每个item在被选中时的属性值*/
QListWidget::item:selected
{
background-color:#086de7;
color:white;
}
QPushButton
{
border: 0px;
color: white;
border-radius: 4px;
background-color: #4096ff;
}
QPushButton:hover
{
border: 0px;
color: white;
border-radius: 4px;
background-color: #62a8fe;
}
QPushButton:pressed
{
border: 0px;
color: white;
border-radius: 4px;
background-color: #086de7;
}
QMenuBar
{
background-color: white;
border-bottom-width: 0px;
border-radius: 4px;
}
QMenuBar::item
{
spacing: 0px;
margin-top: 1px;
margin-left: 1px;
padding: 3px 8px;
color: black;
background: transparent;
border-radius: 4px;
width: 50px;
height: 26px; /* 与margin、padding关联并且QMenuBar设置固定高度28px */
}
QMenuBar::item:selected
{
color: white;
background:#62a8fe;
border-radius: 4px;
margin: 1px;
padding: 3px 8px;
}
/*子项目*/
QMenu
{
border-width: 1px;
border-radius: 4px;
border-color: #62a8fe;
border-style: solid;
margin: 2px;
padding: 1px;
}
QMenu::item
{
background:white;
color:black;
border-radius: 4px;
width: 100px;
height: 25px;
}
QMenu::item:selected
{
background:#62a8fe;
color:white;
border-radius: 4px;
width: 100px;
height: 25px;
} /*选中或者说鼠标滑过状态*/
QMenu::item:pressed
{
background:#086de7;
color:white;
border-radius: 4px;
width: 100px;
height: 25px;
}/*摁下状态*/
QTableWidget
{
border-width: 1px;
border-style: solid;
border-radius: 4px;
border-color: #EEF1F7;
}
QTableWidget::item // 每个单元格
{
border-bottom:1px solid #EEF1F7 ; // 只显示每个单元格下边框
}
QTableWidget::item::selected // 每个单元格被选中状态
{
background-color:#4096ff; // 每个单元格被选中时 背景颜色
}
QTableView
{
border-width: 1px;
border-style: solid;
border-radius: 4px;
border-color: #EEF1F7;
}
QTableView::item // 每个单元格
{
border-radius: 4px;
}
QTableView::item::selected // 每个单元格被选中状态
{
background-color:#4096ff; // 每个单元格被选中时 背景颜色
border-radius: 4px;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ma4567/database_controller_for_gbase8c.git
git@gitee.com:ma4567/database_controller_for_gbase8c.git
ma4567
database_controller_for_gbase8c
database_controller_for_gbase8c
master

搜索帮助