1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
@import url(chrome://global/skin/);
#xnote-note {
background: url(txt-background.png);
background-repeat: no-repeat;
background-position:right bottom;
background-color: #FBFEBF;
border: solid 2px #FAF098;
/*height: 75vh;*/
/* -moz-opacity: 0.8; */
/* z-index: 10; */
/* visibility: hidden; */
}
/*#messengerWindow
{
display: -moz-stack !important;
-moz-binding: url('chrome://xnote/content/xnote-overlay.xml#bindingMailContentWrapper');
}*/
#xnote-barre {
background: url(title-background.png);
height: 16px;
border-bottom: solid 2px #FAF098;
cursor: move;
}
#xnote-barre-bottom-html {
height: 10px;
position: fixed;
bottom: 4px;
width: calc(100% - 3px);
display: block;
/*border: 1px solid green; */
}
#xnote-barre-bottom {
height: 14px;
position: fixed;
bottom: 4px;
width: calc(100% - 3px);
display: block;
/*border: 1px solid green; */
}
#xnote-bouton-fermer {
cursor: pointer;
list-style-image : url(close.png);
}
#xnote-button-copy {
cursor: pointer;
/* list-style-image : url(iconmonstr-clipboard-13-16.png);*/
}
#xnote-bouton-palette {
cursor: pointer;
list-style-image : url(palett.png);
}
#xnote-bouton-palette:hover {
list-style-image : url(palett-over.png);
}
#xnote-bouton-suppr {
cursor: pointer;
list-style-image : url(supprimer.png);
height: 8px;
}
#xnote-redim {
cursor: se-resize;
list-style-image : url(redim.png);
/* background : url(redim.png);*/
width: 14px;
float: right;
}
.boite-de-texte {
-moz-appearance:none;
background-color: transparent;
font-family: sans-serif;
font-weight: normal;
margin: 0;
border: 0;
padding: 0;
}
.boite-de-texte1 {
-moz-appearance:none;
background-color: transparent;
font-family: sans-serif;
font-weight: normal;
margin: 0;
border: 0;
padding: 0;
}
.textbox-input {
cursor: inherit;
}
#xnote-titre {
font-size: 8pt;
padding: 0 2px 0px 2px;
margin: 0;
font-weight: bold;
/* Prevent unreadable white text if dark theme is used */
color: black;
}
#xnote-mdate {
font-size: 8pt;
padding: 0 2px 0px 2px;
margin: 0;
font-weight: normal;
/* Prevent unreadable white text if dark theme is used */
color: black;
}
#xnote-texte {
font-size: 10pt;
padding: 3px;
/* Prevent unreadable white text if dark theme is used */
color: black;
/* for testing of resizing: background: lightblue; */
}
#xnote-deplacement {
cursor: pointer;
padding-left: 5px;
}
.custombutton-smaller-html {
height: 8px;
}
.custombutton-smaller {-moz-image-region: rect(0px 14px 14px 0px); }
.custombutton-smaller:hover {-moz-image-region: rect(0px 28px 14px 14px);}
.custombutton-smaller:hover:active {-moz-image-region: rect(14px 14px 28px 0px);}
.custombutton-smaller[disabled='true'] {-moz-image-region: rect(14px 28px 28px 14px);}
#xnote-window {
/* Prevent unreadable white text if dark theme is used */
color: black;
/* display: none;
width: 0px;
height: 0px; */
/* -moz-opacity: 0.1px; */
/* visibility: hidden; */
/* background-color: transparent; */
}
textarea#xnote-texte {
width:97vw;
box-sizing:border-box;
display:block;
max-width:100%;
height: 80vh; /*80vh; calc(100%-28px)*/
line-height:1.5;
padding:15px 15px 30px;
border-radius:3px;
border:1px solid #F7E98D;
font:13px Tahoma, cursive;
transition:box-shadow 0.5s ease;
box-shadow:0 4px 6px rgba(0,0,0,0.1);
background-color: #FBFEBF;
font-smoothing:subpixel-antialiased;
background:linear-gradient(#F9EFAF, #F7E98D);
background:-o-linear-gradient(#F9EFAF, #F7E98D);
background:-ms-linear-gradient(#F9EFAF, #F7E98D);
background:-moz-linear-gradient(#F9EFAF, #F7E98D);
background:-webkit-linear-gradient(#F9EFAF, #F7E98D);
}
|