SPR-908: check fix border-radius
This commit is contained in:
parent
6b86908949
commit
1dc51a98fd
6 changed files with 23 additions and 4 deletions
|
@ -19,7 +19,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* short fix: SPR-891 - Icons für Notifications in Message Area werden gekachelt */
|
/* short fix: SPR-891 - Icons für Notifications in Message Area werden gekachelt */
|
||||||
div.success, div.error, div.info, div.notify {
|
div.success,
|
||||||
|
div.error,
|
||||||
|
div.info,
|
||||||
|
div.notify {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 8px 50%;
|
background-position: 8px 50%;
|
||||||
border: 1px solid #eeb;
|
border: 1px solid #eeb;
|
||||||
|
@ -28,7 +31,7 @@ div.success, div.error, div.info, div.notify {
|
||||||
padding: .4em;
|
padding: .4em;
|
||||||
padding-left: 32px;
|
padding-left: 32px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-radius: 5px;
|
border-radius: @fix_border-radius;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
/* + + + for programmers customizing + + + */
|
/* + + + for programmers customizing + + + */
|
||||||
|
|
||||||
@fix_border-radius: 3px;
|
@fix_border-radius: 3px; // inputs, editbox (textarea), buttons, content, code, quicksearch, msg
|
||||||
|
|
||||||
@toggle-showsidebar_width: 3.07rem; // shown sidebar after toggle
|
@toggle-showsidebar_width: 3.07rem; // shown sidebar after toggle
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
div.editBox {
|
div.editBox {
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
||||||
border: solid 2px #FFF;
|
border: solid 2px #FFF;
|
||||||
border-radius: @ini_default_border_radius;
|
|
||||||
|
|
||||||
.editButtons {
|
.editButtons {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
background-color: @ini_background_content;
|
background-color: @ini_background_content;
|
||||||
border-top: solid 1px @ini_button_background;
|
border-top: solid 1px @ini_button_background;
|
||||||
border-color: @ini_border;
|
border-color: @ini_border;
|
||||||
|
border-radius: 0 0 @fix_border-radius @fix_border-radius;
|
||||||
color: @ini_existing;
|
color: @ini_existing;
|
||||||
font-size: @font-size-small;
|
font-size: @font-size-small;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
|
|
@ -47,9 +47,11 @@
|
||||||
|
|
||||||
&.export {
|
&.export {
|
||||||
bottom: 1px;
|
bottom: 1px;
|
||||||
|
overflow-x: hidden;
|
||||||
background: transparent url("svg.php?svg=file-export.svg&f=existing") left center no-repeat;
|
background: transparent url("svg.php?svg=file-export.svg&f=existing") left center no-repeat;
|
||||||
background-size: auto 20px;
|
background-size: auto 20px;
|
||||||
border: solid 1px @ini_border;
|
border: solid 1px @ini_border;
|
||||||
|
border-radius: 0 0 @fix_border-radius @fix_border-radius;
|
||||||
color: @ini_existing;
|
color: @ini_existing;
|
||||||
font-size: @font-size-small;
|
font-size: @font-size-small;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
|
14
css/plugins/structstatus.less
Normal file
14
css/plugins/structstatus.less
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
/**
|
||||||
|
* This file provides styles for structstatus plugin
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* + + + + + global + + + + + */
|
||||||
|
|
||||||
|
#dokuwiki__content {
|
||||||
|
.struct_status {
|
||||||
|
border-color: @ini_border;
|
||||||
|
border-radius: @fix_border-radius;
|
||||||
|
font-size: @font-size-small;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue