My_GtkUi/Gtkmm3_Mac/res/style.css

37 lines
612 B
CSS
Raw Normal View History

2022-01-27 15:25:47 +08:00
/*
您可以在这里输入任何 GTK+ 可识别的 CSS 规则
您可以点击上面的暂停按钮来暂时停用这个自定义 CSS
变更会立即应用到全局影响整个应用程序
*/
2024-03-19 13:10:27 +08:00
/*@import url("resource://org/gtk/daleclack/reset.css");*/
2022-01-27 15:25:47 +08:00
box{
2022-11-13 16:24:41 +08:00
background-color:alpha(gray,0.7);
2022-11-13 17:22:18 +08:00
color:white;
2022-11-13 16:24:41 +08:00
}
label{
2024-03-19 13:10:27 +08:00
color:white;
}
button{
color:white;
2024-03-23 23:20:39 +08:00
border: 0px;
2024-03-19 13:10:27 +08:00
}
button:hover{
color:black;
background-color: alpha(gray, 0.7);
}
button:active{
color:black;
background-color: alpha(gray, 0.7);
}
button:checked{
2022-11-13 16:24:41 +08:00
color:black;
2024-03-19 13:10:27 +08:00
background-color: gray;
2022-01-27 15:25:47 +08:00
}