1/* =Translation Plugin 2----------------------------------------------- */ 3 4.page-tools { 5 div.plugin_translation{ 6 display: none; 7 position: absolute; 8 background-color: @ini_text_alt; 9 color: white; 10 border-radius: 0 20px 20px 0; 11 padding: 10px; 12 padding-right: 20px; 13 left: 80px; 14 bottom: 0px; 15 16 li,a,span { 17 width: 100%; 18 } 19 20 a,span { 21 border-radius: 20px; 22 border-style: none; 23 font-size: 14px; 24 -webkit-transition: all 0.25s ease-in-out; 25 -moz-transition: all 0.25s ease-in-out; 26 -ms-transition: all 0.25s ease-in-out; 27 -o-transition: all 0.25s ease-in-out; 28 transition: all 0.25s ease-in-out; 29 line-height: 1.5; 30 padding-left: 20px !important; 31 padding-right: 20px !important; 32 padding-top: 10px !important; 33 padding-bottom: 10px !important; 34 text-align: center !important; 35 } 36 37 span { 38 color: #fff !important; 39 background-color: @ini_theme_color !important; 40 } 41 42 a { 43 color: @ini_theme_color !important; 44 background: #fff !important; 45 } 46 47 a:hover { 48 background-color: @ini_theme_color !important; 49 color:#fff !important; 50 } 51 } 52 53 a.Translation { 54 55 span.icon::before { 56 font-family: 'bootstrap-icons'; 57 content: "\f882"; 58 } 59 } 60} 61