merge jde_bar_search and bar_search branch

This commit is contained in:
Jana Deutschländer 2017-02-09 16:48:46 +01:00
commit 5671e6e5e8
19 changed files with 333 additions and 111 deletions

View file

@ -42,7 +42,7 @@
select {
float: left;
width: 50%;
min-height: 2em;
//min-height: 2em;
text-align: left;
padding: .1em .2em;
}

43
css/plugins/edit.less Normal file
View file

@ -0,0 +1,43 @@
/**
* This file provides styles for the edit view (?do=edit), preview
* and section edit buttons.
*/
/* + + + + + edit view + + + + + */
.dokuwiki {
div.section_highlight {
clear: right;
}
.secedit button {
clear: both;
font-size: 100%;
margin-top: .5rem;
margin-bottom: .5rem;
}
div.editbutton_table form div.no {
button,
input.button {
border-top: solid 1px @button_background;
margin-top: 0;
}
}
.editBox {
.editButtons {
display: inline-block;
padding-bottom: 1rem;
}
}
}
.mode_edit {
.content {
.msg-area {
display: block;
margin-bottom: 1.5rem;
clear: both;
}
#meta-box {
display: none;
}
}
}

26
css/plugins/include.less Normal file
View file

@ -0,0 +1,26 @@
/**
* This file provides the main design styles
* across all template elements (typo, colors etc.)
*
* @author Jana Deutschlaender <deutschlaender@cosmocode.de>
*/
#dokuwiki__content .plugin_include_content {
> h1 {
padding-top: @font-size-head1;
}
> h2 {
padding-top: @font-size-head2;
}
> h3 {
padding-top: @font-size-head3;
}
> h4 {
padding-top: @font-size-head4;
}
> h5 {
padding-top: @font-size-head5;
}
> h6 {
padding-top: @font-size-head6;
}
}

View file

@ -0,0 +1,23 @@
/**
* This file provides styles for the edit view (?do=edit), preview
* and section edit buttons.
*/
/* + + + + + mediamanager + + + + + */
#mediamanager__page {
.namespaces h2 {
bottom: 0;
line-height: 100%;
margin-bottom: -1px;
}
#media__tree ul li img {
padding-top: .3em;
}
}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* media queries */
@media @screen_max-md {
#mediamanager__page {
min-width: 100%;
max-width: 100%;
}
}

View file

@ -1,19 +1,23 @@
#popupviewer{
> .controls > .content{
#popupviewer {
> .controls > .content {
padding: 1.5rem 1rem 1rem;
td, th{
td,
th {
font-size: @font-size-default;
line-height: 125%;
line-height: @line-height-default;
a{
font-size: @font-size-default;
line-height: 125%;
line-height: @line-height-default;
}
}
.li, li{
.li,
li {
font-size: @font-size-default;
line-height: 125%;
line-height: @line-height-default;
}
}
}

View file

@ -10,6 +10,11 @@
padding-bottom: @link-height;
margin-bottom: @grid;
table th input:focus {
width: 100%;
box-sizing: border-box;
}
.table {
margin-bottom: 0;
}
@ -19,9 +24,24 @@
bottom: 0;
height: @link-height;
margin-bottom: 0;
&.export {
line-height: 1;
padding-top: .3em;
}
}
}
#plugin__struct_output{
margin-right: 0;
}
.struct_entry_form {
margin-bottom: 2rem;
> fieldset {
margin-top: 1.5rem;
}
}
textarea + .struct_entry_form {
margin-top: -.5rem;
}
}

View file

@ -0,0 +1,48 @@
/**
* This file provides styles for the edit view (?do=edit), preview
* and section edit buttons.
*/
/* + + + + + plugin tabinclude + + + + + */
div#dwpl-ti-container {
/* + + + tabnav + + + */
li.dwpl-ti-tab {
box-shadow: none;
border-color: @color-site-bg;
border-radius: @fix_border-radius @fix_border-radius 0 0;
padding: 0;
div {
background-color: @background_page-header;
border-radius: inherit;
padding: .1em .35em;
&.selected {
background-color: @color-site-bg;
}
}
}
/* + + + box + + + */
div.dwpl-ti-content-box {
overflow: auto;
box-shadow: none;
background-color: @color-site-bg;
border: solid 1px @color-site-bg;
border-radius: 0;
}
}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* media queries */
@media @screen_max-md {
div#dwpl-ti-container {
}
}