diff --git a/README.md b/README.md index f622ea0..fb63296 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ - hackable without any knowledge - builtin rose-mklink script for in-shell static links -# ### 👐 Contribute See [contributing.md](https://github.com/mini-rose/rose/.github/contributing.md). @@ -19,3 +18,9 @@ Rose is released under own license, which grants the following permissions: - Distribution - Modification - Private use + +### To do + +- [x] Add open in new tab functionality +- [x] Test open in new tab functionality +- [ ] Isolate plugins so that they aren't active by default diff --git a/user-scripts/styles/images/style-nuno.png b/user-scripts/styles/images/style-nuno.png new file mode 100644 index 0000000..e9e6bbe Binary files /dev/null and b/user-scripts/styles/images/style-nuno.png differ diff --git a/user-scripts/styles/images/style-original.png b/user-scripts/styles/images/style-original.png new file mode 100644 index 0000000..65c7ffb Binary files /dev/null and b/user-scripts/styles/images/style-original.png differ diff --git a/user-scripts/styles/style-nuno.css b/user-scripts/styles/style-nuno.css new file mode 100644 index 0000000..c7c07b6 --- /dev/null +++ b/user-scripts/styles/style-nuno.css @@ -0,0 +1,52 @@ +@define-color Surface0 #313244; +@define-color Surface1 #45475a; +@define-color Base #1e1e2e; +@define-color Mantle #181825; +@define-color Lavender #b4befe; +@define-color Text #cdd6f4; + +* { + padding: 0px; + margin: 0px; + outline-color: @Lavender; + color: @Text; + border-color: white; + font-size: 16px; + /*@Base; */ + /* border-bottom-color: @Base; */ +} + +window, notebook, headerbar { + background: @Base; +} + +tabs { + background-color: @Base; + padding: 3px; + outline-color: white; + border-color: @Base; +} + +tab { + background-color: @Base; + margin: 2px 5px 2px 0px; + padding: 5px; + border-style: solid; + /*border-color: white; + border-bottom-color: white; + outline-color: white; + margin: 5px; + padding-left: 10px; + padding-right: 10px; */ +} + +entry { + background-color: @Surface0; + padding-left: 10px; +} + +entry:focus { + background-color: @Surface0; + padding-left: 10px; + +} diff --git a/user-scripts/styles/style-original.css b/user-scripts/styles/style-original.css new file mode 100644 index 0000000..45805d7 --- /dev/null +++ b/user-scripts/styles/style-original.css @@ -0,0 +1,37 @@ +@define-color Surface0 #313244; +@define-color Surface1 #45475a; +@define-color Base #1e1e2e; +@define-color Mantle #181825; +@define-color Lavender #b4befe; +@define-color Text #cdd6f4; + +* { + padding: 0px; + margin: 0px; + outline-color: @Lavender; + color: @Text; + border-bottom-color: @Base; +} + +window, notebook, headerbar { + background: @Base; +} + +tabs { + background-color: @Base; + padding: 3px; +} + +tab { + background-color: @Base; + margin: 5px; +} + +entry { + background-color: @Surface0; + padding-left: 10px; +} + +entry:focus { + box-shadow: none; +}