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 transition: all 0.25s ease-in-out; 25 line-height: 1.5; 26 padding-left: 20px !important; 27 padding-right: 20px !important; 28 padding-top: 10px !important; 29 padding-bottom: 10px !important; 30 text-align: center !important; 31 } 32 33 span { 34 color: #fff !important; 35 background-color: @ini_theme_color !important; 36 } 37 38 a { 39 color: @ini_theme_color !important; 40 background: #fff !important; 41 } 42 43 a:hover { 44 background-color: @ini_theme_color !important; 45 color:#fff !important; 46 } 47 } 48 49 a.Translation { 50 51 span.icon::before { 52 font-family: 'bootstrap-icons'; 53 content: "\f882"; 54 } 55 } 56} 57