textual-paint/paint.css

343 lines
6.5 KiB
CSS
Raw Normal View History

2023-04-10 23:51:53 +03:00
Screen {
2023-04-15 06:31:05 +03:00
layers: window menu-popup;
overflow: hidden;
2023-04-10 23:51:53 +03:00
}
2023-04-11 01:06:41 +03:00
#paint {
layout: vertical;
2023-04-11 06:25:32 +03:00
}
#main_horizontal_split {
layout: horizontal;
2023-04-10 23:51:53 +03:00
}
#editing_area {
width: 1fr;
background: rgb(128, 128, 128);
2023-04-11 15:47:47 +03:00
}
.-dark-mode #editing_area {
background: $surface-lighten-2;
}
2023-04-11 15:47:47 +03:00
2023-04-11 15:46:57 +03:00
#canvas {
width: auto;
height: auto;
2023-04-11 15:47:47 +03:00
margin: 1 2;
2023-04-11 15:46:57 +03:00
}
#tools_box {
layout: grid;
grid-size: 2;
grid-gutter: 0 1;
grid-columns: 6;
grid-rows: 3;
padding: 0 1;
width: 15;
height: 100%;
/* can't have a border without taking up a whole cell, and it's more important to show as much of the tools as possible */
/* border-bottom: tall $panel-darken-2; */
background: $panel-darken-1;
overflow: hidden;
}
2023-04-14 01:18:27 +03:00
#tools_box Button {
text-style: none !important;
}
#tools_box Button.selected {
2023-04-11 04:04:08 +03:00
background: $panel-lighten-3;
border-bottom: tall $panel-lighten-2;
border-top: tall $panel-darken-2;
}
2023-04-11 06:25:32 +03:00
#colors_box {
height: 6;
2023-04-11 06:56:47 +03:00
layout: grid;
grid-size: 2;
grid-columns: 10 1fr;
border-top: tall $panel-lighten-2;
background: $panel-darken-1;
2023-04-11 06:56:47 +03:00
}
.color_well {
border-top: tall $panel-darken-2;
border-bottom: tall $panel-lighten-3;
}
2023-04-21 18:04:30 +03:00
#palette_selection_box {
2023-04-11 06:56:47 +03:00
max-height: 5;
overflow: hidden;
}
2023-04-21 18:04:30 +03:00
#selected_color_char_input {
width: 9;
2023-04-11 06:56:47 +03:00
height: 4;
padding-left: 3;
2023-04-11 06:56:47 +03:00
margin-left: 1;
}
#available_colors {
2023-04-11 06:25:32 +03:00
layout: grid;
grid-size: 14;
grid-gutter: 0 1;
grid-columns: 4;
2023-04-11 06:25:32 +03:00
grid-rows: 2;
height: auto;
width: auto;
overflow: hidden;
2023-04-11 06:25:32 +03:00
}
Menu {
2023-04-13 05:42:48 +03:00
background: $panel;
}
Menu.menu_popup {
2023-04-13 05:07:38 +03:00
layout: vertical;
2023-04-13 05:42:48 +03:00
dock: top;
2023-04-15 06:24:51 +03:00
layer: menu-popup;
2023-04-13 05:07:38 +03:00
width: auto;
height: auto;
min-width: 30;
overflow-y: auto;
/* calc isn't supported, and this should be determined by the y position anyways, which is set in python */
/* max-height: calc(100vh - 3); */
max-height: 90vh;
/* width: auto doesn't account for the vertical scrollbar... */
/* which means it would make a horizontal scrollbar or cut off a character on the right, */
/* but I'm accounting for this with padding-right inside the menu item */
overflow-x: hidden;
2023-04-13 05:07:38 +03:00
}
MenuBar {
2023-04-13 03:49:16 +03:00
layout: horizontal;
2023-04-13 05:07:38 +03:00
width: 100%;
2023-04-13 03:49:16 +03:00
height: auto;
dock: top;
/* border-bottom: hkey $panel-darken-2; */
overflow: hidden;
2023-04-13 03:49:16 +03:00
}
MenuItem {
2023-04-13 03:49:16 +03:00
width: auto;
height: auto;
text-style: none;
2023-04-13 03:49:16 +03:00
}
MenuItem.grayed {
color: #777;
}
Separator {
width: 100%;
height: 1;
}
Menu Button {
2023-04-13 03:49:16 +03:00
border: none;
height: 3;
2023-04-16 04:16:18 +03:00
}
MenuBar Button {
2023-04-17 03:33:29 +03:00
width: auto;
min-width: 0;
2023-04-15 06:31:05 +03:00
}
Menu.menu_popup Button {
min-width: 1fr;
2023-04-16 04:16:18 +03:00
text-align: left;
/* This compensates for the scrollbar, so text isn't cut off (though it also applies when there's no scrollbar) */
padding-right: 1;
2023-04-16 04:16:18 +03:00
}
2023-04-15 06:31:05 +03:00
2023-04-21 00:46:48 +03:00
Window {
2023-04-15 06:31:05 +03:00
dock: top;
layer: window;
background: $surface;
border: outer $panel-darken-2;
layout: vertical;
align: center middle;
width: auto;
height: auto;
}
2023-04-21 00:46:48 +03:00
WindowTitleBar {
2023-04-15 06:31:05 +03:00
layout: horizontal;
width: 100%;
height: auto;
background: $accent;
color: auto;
text-style: bold;
}
2023-04-21 00:46:48 +03:00
WindowTitleBar Button {
2023-04-15 06:31:05 +03:00
max-width: 6;
height: 3;
2023-04-15 06:31:05 +03:00
}
.window_title {
width: 1fr;
height: 100%;
content-align: left middle;
padding-left: 1;
}
.window_close {
background: $panel;
border: inner $panel-darken-1;
border-top: inner $panel-lighten-1;
border-left: inner $panel-lighten-1;
}
.window_close:hover {
background: $panel-darken-1;
border: inner $panel-darken-3;
border-top: inner $panel-lighten-1;
border-left: inner $panel-lighten-1;
}
/* :active doesn't seem to be supported,
and .-active doesn't apply until after click,
at which point the window is closed, generally. */
.window_close.-active {
border: inner $panel-lighten-1;
border-top: inner $panel-darken-3;
border-left: inner $panel-darken-3;
}
2023-04-15 06:31:05 +03:00
.window_content {
layout: vertical;
overflow: auto;
width: auto;
height: auto;
background: $background;
}
2023-04-21 00:46:48 +03:00
DialogWindow .window_content {
2023-04-15 06:31:05 +03:00
background: $surface;
}
.file_dialog_window .window_content {
2023-04-15 06:31:05 +03:00
padding: 2 4;
2023-04-15 08:25:31 +03:00
width: 80;
height: 30;
2023-04-15 06:31:05 +03:00
}
.file_dialog_window .window_content Input {
2023-04-15 06:31:05 +03:00
width: 100%;
margin-bottom: 1;
}
.file_dialog_window .window_content DirectoryTree {
2023-04-15 08:25:31 +03:00
height: 15;
margin-bottom: 1;
}
.file_dialog_window .window_content Button {
2023-04-15 06:31:05 +03:00
width: auto;
height: auto;
}
CharacterSelectorDialogWindow DataTable {
2023-04-20 07:29:14 +03:00
width: auto;
}
CharacterSelectorDialogWindow .ok,
2023-04-21 00:46:48 +03:00
CharacterSelectorDialogWindow .cancel {
margin: 1;
2023-04-20 07:29:14 +03:00
}
2023-04-20 23:00:38 +03:00
#about_paint_dialog .window_content {
padding: 2 4;
width: 50;
height: auto;
}
2023-04-20 07:29:14 +03:00
2023-04-20 23:16:10 +03:00
#help_dialog .window_content {
padding: 2 4;
}
#help_dialog .help_text {
width: 80;
height: auto;
overflow-y: auto;
}
2023-04-22 02:30:37 +03:00
#zoom_dialog .window_content {
padding: 2 4;
width: 50;
/* width: auto; */
height: auto;
}
#zoom_dialog .buttons,
#attributes_dialog .buttons {
2023-04-25 03:33:12 +03:00
layout: horizontal;
height: auto;
}
#zoom_dialog .buttons Button,
#attributes_dialog .buttons Button {
2023-04-25 03:33:12 +03:00
width: auto;
margin: 1;
}
2023-04-22 02:30:37 +03:00
#attributes_dialog .window_content {
padding: 2 4;
width: 50;
height: auto;
}
#attributes_dialog Horizontal,
#attributes_dialog Vertical {
height: auto;
width: auto;
padding: 1 2;
}
#attributes_dialog Input {
width: 20;
}
EditColorsDialogWindow .window_content {
padding: 2 4;
width: 65;
/* align-horizontal: center; */
height: auto;
}
EditColorsDialogWindow .color_grid {
layout: grid;
grid-size: 8;
grid-gutter: 1 2;
grid-columns: 5;
grid-rows: 2;
height: auto;
/* width: auto; */
overflow: hidden;
margin-bottom: 2;
}
MessageBox .window_content {
width: 50;
height: auto;
}
MessageBox .window_content Button {
width: auto;
min-width: 10;
height: auto;
margin-right: 1;
margin-top: 1;
}
MessageBox .message_box_icon {
width: auto;
height: auto;
padding-left: 2;
}
MessageBox .main_content {
padding: 1 2;
width: 1fr;
height: auto;
}
MessageBox .window_content Horizontal {
height: auto;
}
2023-04-24 05:22:28 +03:00
#status_bar {
background: $panel;
height: 3;
layout: horizontal;
}
#status_bar > Static {
width: 20;
height: 100%;
content-align: left middle;
border: none;
border-top: outer $panel-darken-2;
2023-04-24 05:22:28 +03:00
border-bottom: outer $panel-lighten-1;
border-left: outer $panel-darken-1;
2023-04-24 05:22:28 +03:00
}
#status_bar > #status_text {
width: 1fr;
}
#status_bar > #status_dimensions {
/* this is the last division */
border-right: outer $panel-darken-1;
}