1@import "less/editable.less"; 2 3form#tagging__edit { 4 display: none; 5 6 input.edit { 7 width: 95%; 8 } 9} 10 11ul.tagging_cloud { 12 text-align: center; 13 margin: 0; 14 width: 95%; 15 line-height: 2.2em; 16 17 li { 18 display: inline; 19 list-style-type: none; 20 margin: 0; 21 } 22 23 div.li { 24 display: inline-block; 25 margin: 0 0.5em; 26 } 27 28 li.t0 { 29 font-size: 1em; 30 } 31 32 li.t1 { 33 font-size: 1.1em; 34 } 35 36 li.t2 { 37 font-size: 1.2em; 38 } 39 40 li.t3 { 41 font-size: 1.3em; 42 } 43 44 li.t4 { 45 font-size: 1.4em; 46 } 47 48 li.t5 { 49 font-size: 1.5em; 50 } 51 52 li.t6 { 53 font-size: 1.6em; 54 } 55 56 li.t7 { 57 font-size: 1.7em; 58 } 59 60 li.t8 { 61 font-size: 1.8em; 62 } 63 64 li.t9 { 65 font-size: 1.9em; 66 } 67 68 li.t10 { 69 font-size: 2em; 70 } 71} 72 73button.plugin_tagging.sort_button { 74 display: inline-block; 75 margin: 0; 76 padding: 0; 77 border: none; 78 background: transparent; 79 color: #2b73b7; 80 81 &:hover { 82 text-decoration: underline; 83 } 84 &:focus { 85 outline:0; 86 } 87 88 svg { 89 display: inline-block; 90 vertical-align: middle; 91 width: 10px; 92 height: 10px; 93 } 94} 95