Restructuring src folder

This commit is contained in:
2023-11-12 00:49:16 -06:00
parent 39959dc947
commit 2de4de6b22
234 changed files with 1275 additions and 883 deletions

View File

@@ -32,6 +32,11 @@
<property name="can-focus">False</property>
<property name="stock">gtk-redo</property>
</object>
<object class="GtkImage" id="image7">
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="stock">gtk-justify-center</property>
</object>
<object class="GtkImage" id="io_img">
<property name="visible">True</property>
<property name="can-focus">False</property>
@@ -203,6 +208,17 @@
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
</object>
</child>
<child>
<object class="GtkImageMenuItem">
<property name="label">Show Interactive Debugger</property>
<property name="name">ui_debug</property>
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="image">image7</property>
<property name="use-stock">False</property>
<signal name="button-release-event" handler="do_action_from_menu_controls" swapped="no"/>
</object>
</child>
</object>
</child>
</object>
@@ -579,7 +595,6 @@
</child>
<child type="action-start">
<object class="GtkButtonBox">
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="layout-style">start</property>
<child>
@@ -674,7 +689,6 @@
</child>
<child type="action-start">
<object class="GtkButtonBox">
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="layout-style">start</property>
<child>
@@ -783,7 +797,6 @@
</child>
<child type="action-start">
<object class="GtkButtonBox">
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="layout-style">start</property>
<child>
@@ -877,7 +890,6 @@
</child>
<child type="action-start">
<object class="GtkButtonBox">
<property name="visible">True</property>
<property name="can-focus">False</property>
<property name="layout-style">start</property>
<child>

View File

@@ -6,7 +6,7 @@
"open_terminal" : "F4",
"refresh_tab" : ["F5",
"<Control>r"],
"tggl_top_main_menubar" : "<Alt>Alt_L",
"tggl_top_main_menubar" : "<Control>0",
"tear_down" : "<Control>q",
"go_up" : "<Control>Up",
"go_home" : "<Control>slash",

View File

@@ -1,4 +1,10 @@
/* Set fm to have transparent window */
/* * {*/
/* background: rgba(39, 43, 52, 0.24);*/
/* color: rgba(255, 255, 255, 1);*/
/* }*/
box,
iconview,
notebook,
@@ -9,9 +15,47 @@ treeview.view,
.content-view,
.view {
background: rgba(19, 21, 25, 0.14);
/* background: rgba(39, 43, 52, 0.14); */
color: rgba(255, 255, 255, 1);
}
button:hover {
background-color: rgba(255, 185, 25, 0.34);
}
/* ---- top controls ---- */
window > box > box > button,
window > box > box > buttonbox > button {
background: rgba(39, 43, 52, 0.64);
}
buttonbox > button * {
background: rgba(116, 0, 0, 0.0);
color: rgba(255, 255, 255, 1.0);
}
buttonbox > button:checked {
background-color: rgba(255, 125, 25, 0.34);
}
buttonbox > button:hover {
background-color: rgba(255, 185, 25, 0.34);
}
/* ---- notebook headers ---- */
notebook > header {
background: rgba(39, 43, 52, 0.46);
}
notebook > header > tabs > tab {
color: rgba(255, 255, 255, 1);
}
notebook > header > tabs > tab:active {
background: rgba(0, 0, 0, 0.0);
}
notebook > header > tabs > tab:checked {
/* Neon Blue 00e8ff */
background-color: rgba(0, 232, 255, 0.2);
@@ -21,6 +65,41 @@ notebook > header > tabs > tab:checked {
color: rgba(255, 255, 255, 0.8);
}
popover {
background: rgba(39, 43, 52, 0.86);
color: rgba(255, 255, 255, 1);
}
/* ---- make text selection slightly transparent ---- */
* selection {
background-color: rgba(0, 115, 115, 0.34);
/* Bergundy */
/* background-color: rgba(116, 0, 0, 0.64); */
color: rgba(255, 255, 255, 0.5);
}
/* ---- notebook tab buttons ---- */
tab > box > button {
background: rgba(116, 0, 0, 0.64);
}
tab > box > button:hover {
background: rgba(256, 0, 0, 0.64);
}
#message_view {
font: 16px "Monospace";
}
@@ -83,4 +162,4 @@ XfdesktopIconView.view .rubberband {
XfdesktopIconView.view:active {
background-color: rgba(172, 102, 21, 1);
} */
} */