Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
e99289d6
Commit
e99289d6
authored
3 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[dome] theme-compliant widgets
parent
a250b5a2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ivette/src/dome/renderer/style.css
+69
-0
69 additions, 0 deletions
ivette/src/dome/renderer/style.css
ivette/src/renderer/style.css
+1
-70
1 addition, 70 deletions
ivette/src/renderer/style.css
with
70 additions
and
70 deletions
ivette/src/dome/renderer/style.css
+
69
−
0
View file @
e99289d6
...
...
@@ -128,3 +128,72 @@ div.dome-dragged {
}
/* -------------------------------------------------------------------------- */
/* --- Theme-compliant Scrollbars --- */
/* -------------------------------------------------------------------------- */
::-webkit-scrollbar
{
width
:
14px
;
height
:
14px
;
}
::-webkit-scrollbar-track
{
background
:
var
(
--background-intense
);
}
::-webkit-scrollbar-thumb
{
background-color
:
var
(
--info-text-discrete
);
border-radius
:
20px
;
border
:
3px
solid
var
(
--background-intense
);
}
::-webkit-scrollbar-corner
{
background-color
:
var
(
--background-profound
);
background
:
var
(
--background-profound
);
color
:
var
(
--background-profound
);
}
/* -------------------------------------------------------------------------- */
/* --- Theme-compliant Input Widgets --- */
/* -------------------------------------------------------------------------- */
input
[
type
=
"search"
]
::placeholder
{
font-style
:
italic
;
color
:
var
(
--text-discrete
);
}
input
[
type
=
"text"
]
::placeholder
{
font-style
:
italic
;
color
:
var
(
--text-discrete
);
}
input
[
type
=
"text"
]
{
vertical-align
:
middle
;
margin
:
2px
4px
2px
0px
;
background-color
:
var
(
--background-interaction
);
border
:
var
(
--border
);
border-radius
:
2px
;
}
input
:focus-visible
{
outline
:
none
;
box-shadow
:
0px
0px
1px
1px
var
(
--border
);
}
input
[
type
=
"checkbox"
]
{
appearance
:
none
;
width
:
13px
;
height
:
13px
;
border
:
1px
solid
var
(
--border
);
border-radius
:
2px
;
content
:
""
;
font-size
:
12px
;
color
:
var
(
--text
);
background-clip
:
content-box
;
padding
:
1px
;
}
input
[
type
=
"checkbox"
]
:checked
{
background-color
:
var
(
--checked-element
);
}
/* -------------------------------------------------------------------------- */
This diff is collapsed.
Click to expand it.
ivette/src/renderer/style.css
+
1
−
70
View file @
e99289d6
...
...
@@ -48,7 +48,7 @@
.labview-titlebar
{
background
:
var
(
--background-profound
);
height
:
24px
height
:
24px
}
.labview-handle
...
...
@@ -67,72 +67,3 @@
}
/* -------------------------------------------------------------------------- */
/* --- Styling all scrollbars --- */
/* -------------------------------------------------------------------------- */
::-webkit-scrollbar
{
width
:
14px
;
height
:
14px
;
}
::-webkit-scrollbar-track
{
background
:
var
(
--background-intense
);
}
::-webkit-scrollbar-thumb
{
background-color
:
var
(
--info-text-discrete
);
border-radius
:
20px
;
border
:
3px
solid
var
(
--background-intense
);
}
::-webkit-scrollbar-corner
{
background-color
:
var
(
--background-profound
);
background
:
var
(
--background-profound
);
color
:
var
(
--background-profound
);
}
/* -------------------------------------------------------------------------- */
/* --- Styling all inputs --- */
/* -------------------------------------------------------------------------- */
input
[
type
=
"search"
]
::placeholder
{
font-style
:
italic
;
color
:
var
(
--text-discrete
);
}
input
[
type
=
"text"
]
::placeholder
{
font-style
:
italic
;
color
:
var
(
--text-discrete
);
}
input
[
type
=
"text"
]
{
vertical-align
:
middle
;
margin
:
2px
4px
2px
0px
;
background-color
:
var
(
--background-interaction
);
border
:
var
(
--border
);
border-radius
:
2px
;
}
input
:focus-visible
{
outline
:
none
;
box-shadow
:
0px
0px
1px
1px
var
(
--border
);
}
input
[
type
=
"checkbox"
]
{
appearance
:
none
;
width
:
13px
;
height
:
13px
;
border
:
1px
solid
var
(
--border
);
border-radius
:
2px
;
content
:
""
;
font-size
:
12px
;
color
:
var
(
--text
);
background-clip
:
content-box
;
padding
:
1px
;
}
input
[
type
=
"checkbox"
]
:checked
{
background-color
:
var
(
--checked-element
);
}
/* -------------------------------------------------------------------------- */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment