aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorRoy Shilkrot <roy.shil@gmail.com>2022-10-31 11:45:52 -0400
committerRoy Shilkrot <roy.shil@gmail.com>2022-10-31 11:45:52 -0400
commit509fd1459bacfe0dcde1e5792ea3e046aa9f4d24 (patch)
treeeaecb0351d6a95e4c29eaebdcb8b304990fd3a91 /style.css
parentbdc90837987ed8919dd611fd01553b0c170ded5c (diff)
parentdc7425a56e7a014cbfa3b3d44ad2321e519fe378 (diff)
Merge remote-tracking branch 'upstream/master' into roy.add_simple_interrogate_api
Diffstat (limited to 'style.css')
-rw-r--r--style.css51
1 files changed, 45 insertions, 6 deletions
diff --git a/style.css b/style.css
index 13a9fb07..859c3933 100644
--- a/style.css
+++ b/style.css
@@ -314,8 +314,8 @@ input[type="range"]{
.modalControls {
display: grid;
- grid-template-columns: 32px auto 1fr 32px;
- grid-template-areas: "zoom tile space close";
+ grid-template-columns: 32px 32px 32px 1fr 32px;
+ grid-template-areas: "zoom tile save space close";
position: absolute;
top: 0;
left: 0;
@@ -333,6 +333,10 @@ input[type="range"]{
grid-area: zoom;
}
+.modalSave {
+ grid-area: save;
+}
+
.modalTileImage {
grid-area: tile;
}
@@ -346,8 +350,18 @@ input[type="range"]{
cursor: pointer;
}
+.modalSave {
+ color: white;
+ font-size: 28px;
+ margin-top: 8px;
+ font-weight: bold;
+ cursor: pointer;
+}
+
.modalClose:hover,
.modalClose:focus,
+.modalSave:hover,
+.modalSave:focus,
.modalZoom:hover,
.modalZoom:focus {
color: #999;
@@ -516,24 +530,49 @@ img2maskimg, #img2maskimg > .h-60, #img2maskimg > .h-60 > div, #img2maskimg > .h
min-height: 480px !important;
}
+/* Extensions */
+
+#extensions{
+ border-collapse: collapse;
+}
+
+#extensions td, #extensions th{
+ border: 1px solid #ccc;
+ padding: 0.25em 0.5em;
+}
+
+#extensions input[type="checkbox"]{
+ margin-right: 0.5em;
+}
+
+#tab_extensions button{
+ max-width: 16em;
+}
+
+
/* The following handles localization for right-to-left (RTL) languages like Arabic.
The rtl media type will only be activated by the logic in javascript/localization.js.
If you change anything above, you need to make sure it is RTL compliant by just running
your changes through converters like https://cssjanus.github.io/ or https://rtlcss.com/.
Then, you will need to add the RTL counterpart only if needed in the rtl section below.*/
@media rtl {
- /* this part was manualy added */
+ /* this part was added manually */
:host {
direction: rtl;
}
- .output-html:has(.performance), .gr-text-input {
+ select, .file-preview, .gr-text-input, .output-html:has(.performance), #ti_progress {
direction: ltr;
}
+ #script_list > label > select,
+ #x_type > label > select,
+ #y_type > label > select {
+ direction: rtl;
+ }
.gr-radio, .gr-checkbox{
margin-left: 0.25em;
}
- /* this part was automatically generated with few manual modifications */
+ /* automatically generated with few manual modifications */
.performance .time {
margin-right: unset;
margin-left: 0;
@@ -588,4 +627,4 @@ Then, you will need to add the RTL counterpart only if needed in the rtl section
right: unset;
left: 0.5em;
}
-}
+} \ No newline at end of file