Former-commit-id: 25e4b89053
This commit is contained in:
Hadi
2024-06-14 13:44:30 +02:00
parent 19bf7838c4
commit cd3dfb985c
233 changed files with 14340 additions and 23 deletions

View File

@@ -0,0 +1,75 @@
/************
* notebook *
************/
.notebook {
padding: 0;
border-style: none;
background-color: @theme_bg_color;
border-radius: 0px;
background-image: none;
background-clip: border-box;
color: @theme_fg_color;
}
.notebook GtkViewport {
background-color: @theme_bg_color;
color: @theme_fg_color;
}
.notebook tab {
padding: 5px;
border-style: none;
border-radius: 0;
background-color: shade(@theme_bg_color, 0.97);
background-image: none;
}
.notebook tab:active {
background-color: @theme_base_color;
background-image: none;
}
.notebook tab GtkLabel {
color: @theme_fg_color;
}
.notebook tab.top {
border-radius: 3px 3px 0 0;
}
.notebook tab.top:active {
box-shadow: inset 0 3px @theme_selected_bg_color;
}
.notebook tab.right {
border-radius: 0 3px 3px 0;
}
.notebook tab.right:active {
box-shadow: inset -3px 0 @theme_selected_bg_color;
}
.notebook tab.bottom {
border-radius: 0 0 3px 3px;
}
.notebook tab.bottom:active {
box-shadow: inset 0 -3px @theme_selected_bg_color;
}
.notebook tab.left {
border-radius: 3px 0 0 3px;
}
.notebook tab.left:active {
box-shadow: inset 3px 0 @theme_selected_bg_color;
}
.notebook tab .button {
background-color: transparent;
background-image: none;
border-style: none;
color: @theme_text_color;
}
.notebook tab .button:hover {
color: shade(@theme_fg_color, 0.9);
}