mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
118 lines
2.7 KiB
CSS
118 lines
2.7 KiB
CSS
/**
|
|
* Basic screen styles. These styles are needed for basic DokuWiki functions
|
|
* regardless of the used template. Templates can override them of course
|
|
*/
|
|
|
|
/* messages with msg() */
|
|
div.error,
|
|
div.info,
|
|
div.success,
|
|
div.notify {
|
|
color: #000;
|
|
background-repeat: no-repeat;
|
|
background-position: 8px 50%;
|
|
border: 1px solid;
|
|
font-size: 90%;
|
|
margin: 0 0 0.5em;
|
|
padding: 0.4em;
|
|
padding-left: 32px;
|
|
overflow: hidden;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
[dir=rtl] div.error,
|
|
[dir=rtl] div.info,
|
|
[dir=rtl] div.success,
|
|
[dir=rtl] div.notify {
|
|
background-position: 99% 50%;
|
|
padding-left: .4em;
|
|
padding-right: 32px;
|
|
}
|
|
|
|
div.error {
|
|
background-color: #fcc;
|
|
background-image: url(../images/error.png);
|
|
border-color: #ebb;
|
|
}
|
|
|
|
div.info {
|
|
background-color: #ccf;
|
|
background-image: url(../images/info.png);
|
|
border-color: #bbe;
|
|
}
|
|
|
|
div.success {
|
|
background-color: #cfc;
|
|
background-image: url(../images/success.png);
|
|
border-color: #beb;
|
|
}
|
|
|
|
div.notify {
|
|
background-color: #ffc;
|
|
background-image: url(../images/notify.png);
|
|
border-color: #eeb;
|
|
}
|
|
|
|
/* modal windows */
|
|
.JSpopup,
|
|
#link__wiz {
|
|
position: absolute;
|
|
background-color: #fff;
|
|
color: #000;
|
|
z-index: 20;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#link__wiz .ui-dialog-content {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
/* media manager popup toggle buttons */
|
|
|
|
#media__popup_content button.button {
|
|
border: 1px outset;
|
|
}
|
|
|
|
#media__popup_content button.selected {
|
|
border-style: inset;
|
|
}
|
|
|
|
/* hide something accessibly
|
|
(e.g. for screen readers or to keep access keys working) */
|
|
.a11y {
|
|
position: absolute !important;
|
|
left: -99999em !important;
|
|
top: auto !important;
|
|
width: 1px !important;
|
|
height: 1px !important;
|
|
overflow: hidden !important;
|
|
}
|
|
[dir=rtl] .a11y {
|
|
left: auto !important;
|
|
right: -99999em !important;
|
|
}
|
|
|
|
/* syntax highlighting code */
|
|
.code .br0 { color: #66cc66; }
|
|
.code .co0 { color: #808080; font-style: italic; }
|
|
.code .co1 { color: #808080; font-style: italic; }
|
|
.code .co2 { color: #808080; font-style: italic; }
|
|
.code .co3 { color: #808080; }
|
|
.code .coMULTI { color: #808080; font-style: italic; }
|
|
.code .es0 { color: #000099; font-weight: bold; }
|
|
.code .kw1 { color: #b1b100; }
|
|
.code .kw2 { color: #000000; font-weight: bold; }
|
|
.code .kw3 { color: #000066; }
|
|
.code .kw4 { color: #993333; }
|
|
.code .kw5 { color: #0000ff; }
|
|
.code .me1 { color: #006600; }
|
|
.code .me2 { color: #006600; }
|
|
.code .nu0 { color: #cc66cc; }
|
|
.code .re0 { color: #0000ff; }
|
|
.code .re1 { color: #0000ff; }
|
|
.code .re2 { color: #0000ff; }
|
|
.code .re3 { color: #ff3333; font-weight:bold; }
|
|
.code .re4 { color: #009999; }
|
|
.code .st0 { color: #ff0000; }
|
|
.code .sy0 { color: #66cc66; }
|