SPR-984: printstyles - medienmanager, forms
This commit is contained in:
parent
1a26e0556e
commit
51d090aeeb
1 changed files with 121 additions and 4 deletions
125
css/print.less
125
css/print.less
|
@ -11,6 +11,7 @@
|
||||||
@color-print: #000;
|
@color-print: #000;
|
||||||
@background-print: transparent;
|
@background-print: transparent;
|
||||||
@border-color-print: #ccc;
|
@border-color-print: #ccc;
|
||||||
|
@border-dark-print: #777;
|
||||||
|
|
||||||
|
|
||||||
/* + + + + + print styles + + + + + */
|
/* + + + + + print styles + + + + + */
|
||||||
|
@ -27,6 +28,7 @@ a:visited {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* lightbox is shown: */ #dokuwiki__top[style="overflow: hidden;"] .page-wrapper,
|
||||||
#spr__direct,
|
#spr__direct,
|
||||||
.top-header,
|
.top-header,
|
||||||
.main-footer,
|
.main-footer,
|
||||||
|
@ -38,8 +40,7 @@ a:visited {
|
||||||
.breadcrumbs,
|
.breadcrumbs,
|
||||||
.structaggregation > a.export,
|
.structaggregation > a.export,
|
||||||
#dokuwiki__content .structaggregation > a,
|
#dokuwiki__content .structaggregation > a,
|
||||||
#dokuwiki__content a.folder,
|
#dokuwiki__content a.folder {
|
||||||
/* lightbox is shown: */ #dokuwiki__top[style="overflow: hidden;"] .page-wrapper {
|
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,7 +161,7 @@ a:visited {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* data plugin */
|
/* + + + data plugin + + + */
|
||||||
.dataplugin_entry dl {
|
.dataplugin_entry dl {
|
||||||
border: 1pt solid @border-color-print;
|
border: 1pt solid @border-color-print;
|
||||||
padding: 7pt;
|
padding: 7pt;
|
||||||
|
@ -177,7 +178,7 @@ a:visited {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* tabbox */
|
/* + + + tabbox + + + */
|
||||||
div#dwpl-ti-container .dwpl-ti,
|
div#dwpl-ti-container .dwpl-ti,
|
||||||
.dwpl-ti-permalink-header,
|
.dwpl-ti-permalink-header,
|
||||||
.dwpl-ti-permalink-footer {
|
.dwpl-ti-permalink-footer {
|
||||||
|
@ -188,3 +189,119 @@ div#dwpl-ti-container div.dwpl-ti-content-box {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* + + + medie nmanager + + + */
|
||||||
|
#mediamanager__page {
|
||||||
|
.namespaces,
|
||||||
|
.filelist .tabs,
|
||||||
|
.panelHeader form {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.rows {
|
||||||
|
width: auto;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filelist li {
|
||||||
|
clear: both;
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 7pt 0 0;
|
||||||
|
|
||||||
|
dl {
|
||||||
|
position: relative;
|
||||||
|
display: table;
|
||||||
|
border-top: solid 1pt @border-color-print;
|
||||||
|
padding-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
display: table-cell;
|
||||||
|
width: 10%;
|
||||||
|
height: 40px;
|
||||||
|
|
||||||
|
.size,
|
||||||
|
.filesize {
|
||||||
|
width: 15%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.date {
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
display: table-cell;
|
||||||
|
|
||||||
|
&.name {
|
||||||
|
position: absolute;
|
||||||
|
top: .5rem;
|
||||||
|
left: 0;
|
||||||
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* + + + forms + + + */
|
||||||
|
form {
|
||||||
|
button {
|
||||||
|
&[type="submit"],
|
||||||
|
&[type="reset"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
label,
|
||||||
|
label.block {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
br + br {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
clear: both;
|
||||||
|
|
||||||
|
> input {
|
||||||
|
&:first-child {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ span {
|
||||||
|
float: left;
|
||||||
|
display: inline-block;
|
||||||
|
padding-left: 7pt;
|
||||||
|
padding-bottom: 13pt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
label.block {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
> span {
|
||||||
|
float: none;
|
||||||
|
padding-bottom: 0;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
textarea,
|
||||||
|
select {
|
||||||
|
border: 1pt solid @border-dark-print;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue