runtime/webinterface.css
author Edouard Tisserant <edouard@beremiz.fr>
Tue, 23 Jul 2024 17:05:59 +0200
changeset 3999 1479acf750e2
parent 3858 dcc83e03d065
permissions -rw-r--r--
MQTT: WIP fix modified status not being set when adding and modifying topics or attributes.

Fix loading of CSV that was not applying model types, and that not checking conformance either.
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     1
body {
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     2
	background-color: #f5faff;
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     3
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     4
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
     5
* {
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     6
    font-family: Tahoma, Verdana, sans-serif;
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     7
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
     8
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
     9
h1, h2 {
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    10
	color: darkslateblue;
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    11
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    12
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    13
fieldset {
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    14
	color: #424242;
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    15
	border: 1px solid gray;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    16
	border-radius: 4px;
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    17
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    18
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    19
input, select, button, a {
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    20
	font-size: 14px;
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    21
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    22
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    23
button,
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    24
input,
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    25
select,
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    26
textarea {
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    27
    color: inherit;
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    28
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    29
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    30
legend, .freeform-form-label {
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    31
	color: darkslateblue;
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    32
}
2266
ed415982a9aa NevowServer : Added minimalist css style customization and a link to go to settings page and back
dporopat <denis.poropat@smarteh.si>
parents:
diff changeset
    33
ed415982a9aa NevowServer : Added minimalist css style customization and a link to go to settings page and back
dporopat <denis.poropat@smarteh.si>
parents:
diff changeset
    34
.freeform-label {
ed415982a9aa NevowServer : Added minimalist css style customization and a link to go to settings page and back
dporopat <denis.poropat@smarteh.si>
parents:
diff changeset
    35
    float: left;
ed415982a9aa NevowServer : Added minimalist css style customization and a link to go to settings page and back
dporopat <denis.poropat@smarteh.si>
parents:
diff changeset
    36
    width: 30%;
ed415982a9aa NevowServer : Added minimalist css style customization and a link to go to settings page and back
dporopat <denis.poropat@smarteh.si>
parents:
diff changeset
    37
}
ed415982a9aa NevowServer : Added minimalist css style customization and a link to go to settings page and back
dporopat <denis.poropat@smarteh.si>
parents:
diff changeset
    38
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    39
a {
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    40
    background-color: #e9e9ed;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    41
    color: #424242;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    42
    padding: 2px 6px;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    43
    text-align: center;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    44
    text-decoration: none;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    45
    display: inline-block;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    46
    border: 1px solid gray;
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    47
    border-radius: 4px;
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    48
}
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    49
3858
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    50
a:hover, a:active {
dcc83e03d065 Runtime web settings: fix punctuation and update CSS again
Edouard Tisserant
parents: 3857
diff changeset
    51
    background-color: silver;
3857
d1fa9536b392 Update default CSS for Runtime WebSettings.
Edouard Tisserant
parents: 2266
diff changeset
    52
}