1/* =addNewPage Plugin 2----------------------------------------------- */ 3 4.page-tools { 5 div.addnewpage{ 6 display: none; 7 position: absolute; 8 background-color: @ini_text_alt; 9 color: @ini_background; 10 border-radius: 0 20px 20px 0; 11 padding: 10px; 12 padding-right: 30px; 13 left: 80px; 14 top: 0px; 15 width: 300px; 16 17 select, 18 textarea, 19 input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]) { 20 background: @ini_background; 21 margin-bottom: 10px; 22 } 23 24 button, 25 input[type="submit"], 26 input[type="button"], 27 input[type="reset"] { 28 width: 100%; 29 } 30 } 31 32 a.AddNewPage { 33 34 span.icon::before { content: "\F4F8"; } 35 } 36} 37 38/* 767px > x */ 39@media only screen and (max-width: 767px) { 40 .page-tools { 41 div.addnewpage{ 42 left: 0px; 43 top: auto; 44 border-radius: 0px; 45 width: 100vw; 46 padding: 20px; 47 padding-right: 20px; 48 } 49 } 50} 51