SPR-867: Tags + Form for Tagcloud
This commit is contained in:
parent
69527259ce
commit
24b8fdfaf2
4 changed files with 130 additions and 1 deletions
|
@ -180,6 +180,7 @@
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
display: block;
|
display: block;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
|
@ -205,6 +206,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&#spr__tab-tags {
|
||||||
|
> div {
|
||||||
|
ul {
|
||||||
|
li {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#dw__toc {
|
#dw__toc {
|
||||||
width: auto;
|
width: auto;
|
||||||
float: none;
|
float: none;
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
/* + + + + + plugin tabinclude + + + + + */
|
/* + + + + + plugin tabinclude + + + + + */
|
||||||
|
|
||||||
|
|
||||||
div#dwpl-ti-container {
|
div#dwpl-ti-container {
|
||||||
|
|
||||||
/* + + + tabnav + + + */
|
/* + + + tabnav + + + */
|
||||||
|
@ -20,6 +19,7 @@ div#dwpl-ti-container {
|
||||||
background-color: @background_page-header;
|
background-color: @background_page-header;
|
||||||
border-radius: inherit;
|
border-radius: inherit;
|
||||||
padding: .1em .35em;
|
padding: .1em .35em;
|
||||||
|
|
||||||
&.selected {
|
&.selected {
|
||||||
background-color: @color-site-bg;
|
background-color: @color-site-bg;
|
||||||
}
|
}
|
||||||
|
|
117
css/plugins/tagging.less
Normal file
117
css/plugins/tagging.less
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
/**
|
||||||
|
* This file provides styles for the form in tagcloud
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* + + + + + plugin tagging + + + + + */
|
||||||
|
|
||||||
|
#spr__meta-box {
|
||||||
|
ul.tagging_cloud {
|
||||||
|
width: 100%;
|
||||||
|
padding-right: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
&.t0 a {
|
||||||
|
font-size: .9rem;
|
||||||
|
}
|
||||||
|
&.t1 a {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
&.t2 a {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
&.t3 a {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
&.t4 a {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
&.t5 a {
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
&.t6 a {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
&.t7 a {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
}
|
||||||
|
&.t8 a {
|
||||||
|
font-size: 1.7rem;
|
||||||
|
}
|
||||||
|
&.t9 a {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
&.t10 a {
|
||||||
|
font-size: 1.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
form#tagging__edit {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.edit {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
|
/* max-width: 479px */
|
||||||
|
|
||||||
|
@media @screen_max-md {
|
||||||
|
#spr__meta-box {
|
||||||
|
form {
|
||||||
|
&#tagging__edit {
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 50%;
|
||||||
|
vertical-align: top;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.edit {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media @screen_max-xs {
|
||||||
|
#spr__meta-box {
|
||||||
|
form {
|
||||||
|
div > button[type="submit"] {
|
||||||
|
width: 49%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&#tagging__edit {
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
button[type="submit"] {
|
||||||
|
float: right;
|
||||||
|
|
||||||
|
&:first-of-type {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -92,6 +92,7 @@ css/plugins/highlight_parent.less = all
|
||||||
css/plugins/edit.less = all
|
css/plugins/edit.less = all
|
||||||
css/plugins/mediamanager.less = all
|
css/plugins/mediamanager.less = all
|
||||||
css/plugins/tabinclude.less = all
|
css/plugins/tabinclude.less = all
|
||||||
|
css/plugins/tagging.less = all
|
||||||
css/plugins/include.less = all
|
css/plugins/include.less = all
|
||||||
css/plugins/edittable.less = all
|
css/plugins/edittable.less = all
|
||||||
css/plugins/extension__manager.less = all
|
css/plugins/extension__manager.less = all
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue