選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

screen.css 84KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859
  1. @charset "UTF-8";
  2. /**
  3. Copyright distrib (2018)
  4. contact@opendistrib.net
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. /**
  32. Copyright distrib (2018)
  33. contact@opendistrib.net
  34. Ce logiciel est un programme informatique servant à aider les producteurs
  35. à distribuer leur production en circuits courts.
  36. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  37. respectant les principes de diffusion des logiciels libres. Vous pouvez
  38. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  39. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  40. sur le site "http://www.cecill.info".
  41. En contrepartie de l'accessibilité au code source et des droits de copie,
  42. de modification et de redistribution accordés par cette licence, il n'est
  43. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  44. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  45. titulaire des droits patrimoniaux et les concédants successifs.
  46. A cet égard l'attention de l'utilisateur est attirée sur les risques
  47. associés au chargement, à l'utilisation, à la modification et/ou au
  48. développement et à la reproduction du logiciel par l'utilisateur étant
  49. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  50. manipuler et qui le réserve donc à des développeurs et des professionnels
  51. avertis possédant des connaissances informatiques approfondies. Les
  52. utilisateurs sont donc invités à charger et tester l'adéquation du
  53. logiciel à leurs besoins dans des conditions permettant d'assurer la
  54. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  55. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  56. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  57. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  58. termes.
  59. */
  60. @font-face {
  61. font-family: 'comfortaabold';
  62. src: url("../fonts/comfortaa-bold-webfont.eot");
  63. src: url("../fonts/comfortaa-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/comfortaa-bold-webfont.woff2") format("woff2"), url("../fonts/comfortaa-bold-webfont.woff") format("woff"), url("../fonts/comfortaa-bold-webfont.ttf") format("truetype"), url("../fonts/comfortaa-bold-webfont.svg#comfortaabold") format("svg");
  64. font-weight: normal;
  65. font-style: normal;
  66. }
  67. @font-face {
  68. font-family: 'comfortaalight';
  69. src: url("../fonts/comfortaa-light-webfont.eot");
  70. src: url("../fonts/comfortaa-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/comfortaa-light-webfont.woff2") format("woff2"), url("../fonts/comfortaa-light-webfont.woff") format("woff"), url("../fonts/comfortaa-light-webfont.ttf") format("truetype"), url("../fonts/comfortaa-light-webfont.svg#comfortaalight") format("svg");
  71. font-weight: normal;
  72. font-style: normal;
  73. }
  74. @font-face {
  75. font-family: 'comfortaaregular';
  76. src: url("../fonts/comfortaa-regular-webfont.eot");
  77. src: url("../fonts/comfortaa-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/comfortaa-regular-webfont.woff2") format("woff2"), url("../fonts/comfortaa-regular-webfont.woff") format("woff"), url("../fonts/comfortaa-regular-webfont.ttf") format("truetype"), url("../fonts/comfortaa-regular-webfont.svg#comfortaaregular") format("svg");
  78. font-weight: normal;
  79. font-style: normal;
  80. }
  81. @font-face {
  82. font-family: 'myriadpro-it';
  83. src: url("../fonts/myriadpro-it.eot");
  84. src: url("../fonts/myriadpro-it.eot?#iefix") format("embedded-opentype"), url("../fonts/myriadpro-it.woff") format("woff"), url("../fonts/myriadpro-it.ttf") format("truetype"), url("../fonts/myriadpro-it.svg#myriadpro-it") format("svg");
  85. font-weight: normal;
  86. font-style: normal;
  87. }
  88. @font-face {
  89. font-family: 'myriadpro-light';
  90. src: url("../fonts/myriadpro-light.eot");
  91. src: url("../fonts/myriadpro-light.eot?#iefix") format("embedded-opentype"), url("../fonts/myriadpro-light.woff") format("woff"), url("../fonts/myriadpro-light.ttf") format("truetype"), url("../fonts/myriadpro-light.svg#myriadpro-light") format("svg");
  92. font-weight: normal;
  93. font-style: normal;
  94. }
  95. @font-face {
  96. font-family: 'myriadpro-regular';
  97. src: url("../fonts/myriadpro-regular.eot");
  98. src: url("../fonts/myriadpro-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/myriadpro-regular.woff") format("woff"), url("../fonts/myriadpro-regular.ttf") format("truetype"), url("../fonts/myriadpro-regular.svg#myriadpro-regular") format("svg");
  99. font-weight: normal;
  100. font-style: normal;
  101. }
  102. @font-face {
  103. font-family: 'myriadpro-semibold';
  104. src: url("../fonts/myriadpro-semibold.eot");
  105. src: url("../fonts/myriadpro-semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/myriadpro-semibold.woff") format("woff"), url("../fonts/myriadpro-semibold.ttf") format("truetype"), url("../fonts/myriadpro-semibold.svg#myriadpro-semibold") format("svg");
  106. font-weight: normal;
  107. font-style: normal;
  108. }
  109. /* line 46, ../sass/screen.scss */
  110. .clr {
  111. clear: both;
  112. }
  113. /* line 50, ../sass/screen.scss */
  114. h1, h2, h3, h4, h5, h6 {
  115. font-family: "myriadpro-light";
  116. }
  117. /* line 54, ../sass/screen.scss */
  118. a {
  119. color: #F39C12;
  120. }
  121. /* line 57, ../sass/screen.scss */
  122. a:hover, a:focus, a:active {
  123. color: #c87f0a;
  124. }
  125. /* line 62, ../sass/screen.scss */
  126. .float-right {
  127. float: right;
  128. }
  129. /* line 66, ../sass/screen.scss */
  130. .float-left {
  131. float: left;
  132. }
  133. /* line 70, ../sass/screen.scss */
  134. #block-demo {
  135. padding: 10px 0px;
  136. background-color: white;
  137. color: #F39C12;
  138. text-align: left;
  139. margin-bottom: 20px;
  140. border: solid 1px #f5b043;
  141. -moz-border-radius: 5px;
  142. -webkit-border-radius: 5px;
  143. border-radius: 5px;
  144. }
  145. /* line 79, ../sass/screen.scss */
  146. #block-demo a {
  147. text-decoration: underline;
  148. }
  149. /* line 84, ../sass/screen.scss */
  150. #env-dev {
  151. font-family: "comfortaabold";
  152. text-align: center;
  153. font-size: 18px;
  154. padding: 5px 10px;
  155. color: white;
  156. position: fixed;
  157. top: 9px;
  158. left: 66px;
  159. z-index: 1031;
  160. }
  161. /* line 97, ../sass/screen.scss */
  162. .wrap .btn-primary {
  163. background: none;
  164. background-color: #F39C12;
  165. border: solid 1px #F39C12;
  166. }
  167. /* line 102, ../sass/screen.scss */
  168. .wrap .btn-primary:hover, .wrap .btn-primary:focus, .wrap .btn-primary:active {
  169. background-color: #c87f0a;
  170. border: solid 1px #c87f0a;
  171. }
  172. /* line 110, ../sass/screen.scss */
  173. .nav-header .retour-site {
  174. border-left: solid 1px white;
  175. padding: 10px 15px;
  176. }
  177. /* line 117, ../sass/screen.scss */
  178. .navbar-brand .logo {
  179. height: 40px;
  180. position: relative;
  181. top: -10px;
  182. }
  183. /* line 124, ../sass/screen.scss */
  184. .container-body {
  185. padding-top: 117px;
  186. padding-bottom: 50px;
  187. }
  188. /* line 129, ../sass/screen.scss */
  189. .navbar-inverse {
  190. background: none;
  191. background-color: #F39C12;
  192. border-bottom: 0px none;
  193. }
  194. /* line 134, ../sass/screen.scss */
  195. .navbar-inverse .navbar-nav {
  196. padding-top: 12px;
  197. }
  198. /* line 138, ../sass/screen.scss */
  199. .navbar-inverse .navbar-nav > li > a {
  200. color: white;
  201. margin-left: 3px;
  202. padding: 3px 11px;
  203. }
  204. /* line 143, ../sass/screen.scss */
  205. .navbar-inverse .navbar-nav > li > a:hover {
  206. color: white;
  207. }
  208. /* line 151, ../sass/screen.scss */
  209. .navbar-inverse .navbar-nav > li.active a,
  210. .navbar-inverse .navbar-nav > .open a {
  211. background: none;
  212. -moz-box-shadow: none;
  213. -webkit-box-shadow: none;
  214. box-shadow: none;
  215. text-shadow: none;
  216. margin-left: 3px;
  217. background-color: white;
  218. color: #F39C12;
  219. padding: 3px 11px;
  220. -moz-border-radius: 5px;
  221. -webkit-border-radius: 5px;
  222. border-radius: 5px;
  223. }
  224. /* line 161, ../sass/screen.scss */
  225. .navbar-inverse .navbar-nav > li.active a:hover, .navbar-inverse .navbar-nav > li.active a:focus,
  226. .navbar-inverse .navbar-nav > .open a:hover,
  227. .navbar-inverse .navbar-nav > .open a:focus {
  228. background-color: white;
  229. color: #F39C12;
  230. }
  231. /* line 170, ../sass/screen.scss */
  232. .navbar-inverse .navbar-nav > .open a.dropdown-toggle {
  233. -moz-border-radius: 5px 5px 0px 0px;
  234. -webkit-border-radius: 5px;
  235. border-radius: 5px 5px 0px 0px;
  236. }
  237. /* line 174, ../sass/screen.scss */
  238. .navbar-inverse .navbar-nav > .open ul.dropdown-menu {
  239. -moz-box-shadow: 0px 0px 5px gray;
  240. -webkit-box-shadow: 0px 0px 5px gray;
  241. box-shadow: 0px 0px 5px gray;
  242. -moz-border-radius: 5px 0px 5px 5px;
  243. -webkit-border-radius: 5px;
  244. border-radius: 5px 0px 5px 5px;
  245. border-top: 0px none;
  246. right: -1px;
  247. }
  248. /* line 180, ../sass/screen.scss */
  249. .navbar-inverse .navbar-nav > .open ul.dropdown-menu li a {
  250. background-color: transparent;
  251. }
  252. /* line 183, ../sass/screen.scss */
  253. .navbar-inverse .navbar-nav > .open ul.dropdown-menu li a:hover {
  254. color: #c87f0a;
  255. }
  256. /* line 199, ../sass/screen.scss */
  257. .select2 {
  258. width: 100%;
  259. }
  260. /* line 202, ../sass/screen.scss */
  261. .select2 .select2-selection {
  262. border: 1px solid #ccc;
  263. -moz-border-radius: 0px;
  264. -webkit-border-radius: 0px;
  265. border-radius: 0px;
  266. height: 34px;
  267. }
  268. /* line 209, ../sass/screen.scss */
  269. .select2-container--default .select2-results__option--highlighted[aria-selected] {
  270. background-color: #F39C12 !important;
  271. }
  272. /* line 213, ../sass/screen.scss */
  273. .select2-container {
  274. z-index: 9999;
  275. }
  276. /* line 217, ../sass/screen.scss */
  277. #alerts-fixed {
  278. position: fixed;
  279. bottom: 20px;
  280. left: 20px;
  281. }
  282. /* line 222, ../sass/screen.scss */
  283. #alerts-fixed .alert {
  284. margin-top: 20px;
  285. }
  286. /* line 227, ../sass/screen.scss */
  287. .name-producer {
  288. margin-bottom: 15px;
  289. text-align: left;
  290. position: fixed;
  291. top: 51px;
  292. left: 0px;
  293. width: 100%;
  294. background-color: #515151;
  295. background-color: white;
  296. color: #b06f09;
  297. z-index: 100;
  298. font-size: 20px;
  299. padding: 8px 15px;
  300. padding-bottom: 2px;
  301. padding-top: 5px;
  302. border-bottom: solid 1px #e0e0e0;
  303. -moz-box-shadow: 0px 0px 5px gray;
  304. -webkit-box-shadow: 0px 0px 5px gray;
  305. box-shadow: 0px 0px 5px gray;
  306. }
  307. /* line 246, ../sass/screen.scss */
  308. .name-producer #select-producer {
  309. float: left;
  310. font-size: 15px;
  311. }
  312. /* line 251, ../sass/screen.scss */
  313. .name-producer .label {
  314. font-size: 11px;
  315. margin-left: 10px;
  316. position: relative;
  317. bottom: 3px;
  318. }
  319. /* line 256, ../sass/screen.scss */
  320. .name-producer .label a {
  321. color: white;
  322. }
  323. /* line 258, ../sass/screen.scss */
  324. .name-producer .label a:hover {
  325. text-decoration: none;
  326. }
  327. /* line 268, ../sass/screen.scss */
  328. .table thead th.actions {
  329. width: 220px;
  330. }
  331. /* line 271, ../sass/screen.scss */
  332. .table thead th.order {
  333. width: 58px;
  334. }
  335. /* line 274, ../sass/screen.scss */
  336. .table thead th.actif {
  337. width: 75px;
  338. text-align: center;
  339. }
  340. /* line 280, ../sass/screen.scss */
  341. .table tbody td.center {
  342. text-align: center;
  343. }
  344. /* line 288, ../sass/screen.scss */
  345. .footer .pull-left a {
  346. margin-right: 5px;
  347. margin-left: 5px;
  348. color: gray;
  349. }
  350. /* line 296, ../sass/screen.scss */
  351. .footer #code-source img {
  352. height: 20px;
  353. }
  354. /* line 302, ../sass/screen.scss */
  355. a.btn, button.btn {
  356. position: relative;
  357. }
  358. /* line 305, ../sass/screen.scss */
  359. a.btn .glyphicon-triangle-bottom, button.btn .glyphicon-triangle-bottom {
  360. display: none;
  361. position: absolute;
  362. top: 26px;
  363. left: 50%;
  364. margin-left: -10px;
  365. font-size: 20px;
  366. color: #F39C12;
  367. }
  368. /* line 316, ../sass/screen.scss */
  369. a.btn.btn-primary .glyphicon-triangle-bottom, button.btn.btn-primary .glyphicon-triangle-bottom {
  370. display: block;
  371. }
  372. /* line 323, ../sass/screen.scss */
  373. .app-vuejs #loading {
  374. position: fixed;
  375. top: 50%;
  376. left: 50%;
  377. width: 100px;
  378. height: 100px;
  379. -moz-border-radius: 50px;
  380. -webkit-border-radius: 50px;
  381. border-radius: 50px;
  382. background-color: white;
  383. z-index: 10;
  384. -moz-box-shadow: 0px 0px 5px #d0d0d0;
  385. -webkit-box-shadow: 0px 0px 5px #d0d0d0;
  386. box-shadow: 0px 0px 5px #d0d0d0;
  387. }
  388. /* line 334, ../sass/screen.scss */
  389. .app-vuejs #loading img {
  390. position: relative;
  391. top: 35px;
  392. left: 35px;
  393. width: 30px;
  394. height: 30px;
  395. }
  396. /* line 344, ../sass/screen.scss */
  397. #nav-params {
  398. margin-bottom: 30px;
  399. }
  400. /* line 347, ../sass/screen.scss */
  401. #nav-params button {
  402. margin-right: 10px;
  403. }
  404. /* line 355, ../sass/screen.scss */
  405. .panel .panel-heading .panel-title .btn {
  406. float: right;
  407. }
  408. /* modals */
  409. /* line 364, ../sass/screen.scss */
  410. .modal-mask {
  411. position: fixed;
  412. z-index: 9998;
  413. top: 0;
  414. left: 0;
  415. width: 100%;
  416. height: 100%;
  417. background-color: rgba(0, 0, 0, 0.5);
  418. display: table;
  419. transition: opacity .3s ease;
  420. }
  421. /* line 376, ../sass/screen.scss */
  422. .modal-wrapper {
  423. display: table-cell;
  424. vertical-align: middle;
  425. }
  426. /* line 381, ../sass/screen.scss */
  427. .modal-container {
  428. width: 70%;
  429. margin: 0px auto;
  430. padding: 20px 30px;
  431. background-color: #fff;
  432. border-radius: 2px;
  433. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  434. transition: all .3s ease;
  435. font-family: Helvetica, Arial, sans-serif;
  436. }
  437. /* line 392, ../sass/screen.scss */
  438. .modal-header {
  439. padding-bottom: 0px;
  440. }
  441. /* line 394, ../sass/screen.scss */
  442. .modal-header h3 {
  443. margin-top: 0;
  444. color: #333;
  445. text-transform: uppercase;
  446. margin-bottom: 0px;
  447. }
  448. /* line 402, ../sass/screen.scss */
  449. .modal-body {
  450. margin: 20px 0;
  451. max-height: 300px;
  452. height: 300px;
  453. overflow-y: scroll;
  454. }
  455. /* line 409, ../sass/screen.scss */
  456. .modal-default-button {
  457. float: right;
  458. }
  459. /*
  460. * The following styles are auto-applied to elements with
  461. * transition="modal" when their visibility is toggled
  462. * by Vue.js.
  463. *
  464. * You can easily play with the modal transition by editing
  465. * these styles.
  466. */
  467. /* line 422, ../sass/screen.scss */
  468. .modal-enter {
  469. opacity: 0;
  470. }
  471. /* line 426, ../sass/screen.scss */
  472. .modal-leave-active {
  473. opacity: 0;
  474. }
  475. /* line 430, ../sass/screen.scss */
  476. .modal-enter .modal-container,
  477. .modal-leave-active .modal-container {
  478. -webkit-transform: scale(1.1);
  479. transform: scale(1.1);
  480. }
  481. /* line 441, ../sass/screen.scss */
  482. .site-index #last-orders tr.order-update td, .site-index #history-orders tr.order-update td, .user-commandes #last-orders tr.order-update td, .user-commandes #history-orders tr.order-update td {
  483. background-color: white;
  484. }
  485. /* line 444, ../sass/screen.scss */
  486. .site-index #last-orders tr.order-update .update, .site-index #history-orders tr.order-update .update, .user-commandes #last-orders tr.order-update .update, .user-commandes #history-orders tr.order-update .update {
  487. color: #F39C12;
  488. }
  489. /* line 450, ../sass/screen.scss */
  490. .site-index #last-orders tr.order-delete td, .site-index #history-orders tr.order-delete td, .user-commandes #last-orders tr.order-delete td, .user-commandes #history-orders tr.order-delete td {
  491. background-color: #f4cecd;
  492. }
  493. /* line 453, ../sass/screen.scss */
  494. .site-index #last-orders tr.order-delete .delete, .site-index #history-orders tr.order-delete .delete, .user-commandes #last-orders tr.order-delete .delete, .user-commandes #history-orders tr.order-delete .delete {
  495. color: #C9302C;
  496. }
  497. /* line 458, ../sass/screen.scss */
  498. .site-index #last-orders td.history, .site-index #history-orders td.history, .user-commandes #last-orders td.history, .user-commandes #history-orders td.history {
  499. min-width: 170px;
  500. }
  501. /* line 460, ../sass/screen.scss */
  502. .site-index #last-orders td.history .small, .site-index #history-orders td.history .small, .user-commandes #last-orders td.history .small, .user-commandes #history-orders td.history .small {
  503. margin-bottom: 7px;
  504. }
  505. /* line 468, ../sass/screen.scss */
  506. .site-index #last-orders .small, .site-index #last-orders .locality, .site-index #history-orders .small, .site-index #history-orders .locality, .user-commandes #last-orders .small, .user-commandes #last-orders .locality, .user-commandes #history-orders .small, .user-commandes #history-orders .locality {
  507. font-size: 12px;
  508. color: gray;
  509. }
  510. /* line 472, ../sass/screen.scss */
  511. .site-index #last-orders .comment, .site-index #history-orders .comment, .user-commandes #last-orders .comment, .user-commandes #history-orders .comment {
  512. font-size: 12px;
  513. }
  514. /* line 476, ../sass/screen.scss */
  515. .site-index #last-orders .date, .site-index #history-orders .date, .user-commandes #last-orders .date, .user-commandes #history-orders .date {
  516. text-align: center;
  517. }
  518. /* line 480, ../sass/screen.scss */
  519. .site-index #last-orders .comment, .site-index #history-orders .comment, .user-commandes #last-orders .comment, .user-commandes #history-orders .comment {
  520. position: relative;
  521. margin-top: 4px;
  522. padding-left: 20px;
  523. font-style: italic;
  524. }
  525. /* line 486, ../sass/screen.scss */
  526. .site-index #last-orders .comment .glyphicon, .site-index #history-orders .comment .glyphicon, .user-commandes #last-orders .comment .glyphicon, .user-commandes #history-orders .comment .glyphicon {
  527. position: absolute;
  528. left: 0px;
  529. }
  530. /* line 498, ../sass/screen.scss */
  531. .site-index .panel .panel-title .btn {
  532. float: right;
  533. font-family: "myriadpro-regular";
  534. }
  535. /* line 502, ../sass/screen.scss */
  536. .site-index .panel .panel-title .btn.margin-left {
  537. margin-left: 5px;
  538. }
  539. /* line 513, ../sass/screen.scss */
  540. .site-index #billing h2 {
  541. font-size: 25px;
  542. text-align: center;
  543. }
  544. /* line 519, ../sass/screen.scss */
  545. .site-index #billing .current-month .amount span {
  546. background-color: white;
  547. color: #333;
  548. border: solid 1px gray;
  549. }
  550. /* line 526, ../sass/screen.scss */
  551. .site-index #billing .amount {
  552. margin-top: 35px;
  553. text-align: center;
  554. }
  555. /* line 529, ../sass/screen.scss */
  556. .site-index #billing .amount span {
  557. font-size: 22px;
  558. color: white;
  559. background-color: #F39C12;
  560. padding: 7px 10px 3px;
  561. font-family: "myriadpro-regular";
  562. -moz-border-radius: 5px;
  563. -webkit-border-radius: 5px;
  564. border-radius: 5px;
  565. }
  566. /* line 549, ../sass/screen.scss */
  567. #page-order h1 .btn-group {
  568. float: right;
  569. }
  570. /* line 554, ../sass/screen.scss */
  571. #page-order #col-left, #page-order #col-right {
  572. padding-left: 0px;
  573. padding-right: 0px;
  574. }
  575. /* line 558, ../sass/screen.scss */
  576. #page-order #col-right {
  577. padding-left: 20px;
  578. }
  579. /* line 562, ../sass/screen.scss */
  580. #page-order #jours-production {
  581. display: none;
  582. }
  583. /* line 567, ../sass/screen.scss */
  584. #page-order #calendar h2 {
  585. font-size: 20px;
  586. position: relative;
  587. top: 3px;
  588. }
  589. /* line 573, ../sass/screen.scss */
  590. #page-order #calendar .fc-header-title {
  591. margin-left: 10px;
  592. }
  593. /* line 579, ../sass/screen.scss */
  594. #page-order #calendar .dayWithEvent {
  595. background-color: #fee48d;
  596. cursor: pointer;
  597. }
  598. /* line 583, ../sass/screen.scss */
  599. #page-order #calendar .fc-event-container {
  600. display: none;
  601. }
  602. /* line 584, ../sass/screen.scss */
  603. #page-order #calendar .fc-today {
  604. border-bottom: solid 1px #C9302C;
  605. background-color: white;
  606. }
  607. /* line 588, ../sass/screen.scss */
  608. #page-order #calendar .fc-today.dayWithEvent {
  609. background-color: #fee48d;
  610. }
  611. /* line 593, ../sass/screen.scss */
  612. #page-order #calendar .fc-day {
  613. cursor: pointer;
  614. text-align: center;
  615. }
  616. /* line 596, ../sass/screen.scss */
  617. #page-order #calendar .fc-day:hover {
  618. -moz-box-shadow: 0px 0px 2px black inset;
  619. -webkit-box-shadow: 0px 0px 2px black inset;
  620. box-shadow: 0px 0px 2px black inset;
  621. }
  622. /* line 601, ../sass/screen.scss */
  623. #page-order #calendar .current-date {
  624. -moz-box-shadow: 0px 0px 2px black inset;
  625. -webkit-box-shadow: 0px 0px 2px black inset;
  626. box-shadow: 0px 0px 2px black inset;
  627. }
  628. /* line 605, ../sass/screen.scss */
  629. #page-order #calendar .fc-day-number {
  630. float: none;
  631. padding-top: 2px;
  632. }
  633. /* line 611, ../sass/screen.scss */
  634. #page-order .btn-active-week {
  635. display: block;
  636. margin-top: 10px;
  637. }
  638. /* line 618, ../sass/screen.scss */
  639. #page-order #bloc-production .label {
  640. float: right;
  641. font-size: 13px;
  642. }
  643. /* line 623, ../sass/screen.scss */
  644. #page-order #bloc-production #productions-point-vente {
  645. margin-top: 15px;
  646. padding: 10px;
  647. border: solid 1px #e0e0e0;
  648. background-color: #F5F5F5;
  649. -moz-border-radius: 5px;
  650. -webkit-border-radius: 5px;
  651. border-radius: 5px;
  652. }
  653. /* line 629, ../sass/screen.scss */
  654. #page-order #bloc-production #productions-point-vente label {
  655. display: block;
  656. font-weight: normal;
  657. }
  658. /* line 634, ../sass/screen.scss */
  659. #page-order #bloc-production #productions-point-vente .checkbox-list {
  660. margin-left: 10px;
  661. margin-top: 10px;
  662. }
  663. /* line 645, ../sass/screen.scss */
  664. #page-order #produits-production .overflow table {
  665. width: 100%;
  666. }
  667. /* line 649, ../sass/screen.scss */
  668. #page-order #produits-production .overflow thead, #page-order #produits-production .overflow tbody, #page-order #produits-production .overflow tr, #page-order #produits-production .overflow td, #page-order #produits-production .overflow th {
  669. display: block;
  670. }
  671. /* line 651, ../sass/screen.scss */
  672. #page-order #produits-production .overflow tr:after {
  673. content: ' ';
  674. display: block;
  675. visibility: hidden;
  676. clear: both;
  677. }
  678. /* line 658, ../sass/screen.scss */
  679. #page-order #produits-production .overflow thead th {
  680. height: 30px;
  681. }
  682. /* line 663, ../sass/screen.scss */
  683. #page-order #produits-production .overflow tbody {
  684. height: 500px;
  685. overflow-y: auto;
  686. }
  687. /* line 671, ../sass/screen.scss */
  688. #page-order #produits-production .overflow thead th {
  689. width: 32%;
  690. float: left;
  691. }
  692. /* line 676, ../sass/screen.scss */
  693. #page-order #produits-production .overflow tbody td {
  694. width: 33%;
  695. float: left;
  696. }
  697. /* line 681, ../sass/screen.scss */
  698. #page-order #produits-production .overflow .td-produit {
  699. width: 60%;
  700. }
  701. /* line 684, ../sass/screen.scss */
  702. #page-order #produits-production .overflow .td-active, #page-order #produits-production .overflow .td-max {
  703. width: 20%;
  704. text-align: center;
  705. }
  706. /* line 690, ../sass/screen.scss */
  707. #page-order #produits-production .overflow thead .td-product {
  708. width: 57%;
  709. }
  710. /* line 696, ../sass/screen.scss */
  711. #page-order #produits-production input.quantity-max {
  712. background-color: white;
  713. border: 1px solid #e0e0e0;
  714. text-align: center;
  715. width: 50px;
  716. }
  717. /* line 704, ../sass/screen.scss */
  718. #page-order #produits-production td label {
  719. font-weight: normal;
  720. }
  721. /* line 710, ../sass/screen.scss */
  722. #page-order #btn-export-commandes,
  723. #page-order #btn-commandes-auto {
  724. float: right;
  725. position: relative;
  726. top: -5px;
  727. right: -7px;
  728. padding: 2px 5px;
  729. }
  730. /* line 719, ../sass/screen.scss */
  731. #page-order #btn-export-commandes,
  732. #page-order #btn-commandes-auto {
  733. color: white;
  734. margin-left: 10px;
  735. padding: 1px 5px;
  736. }
  737. /* line 726, ../sass/screen.scss */
  738. #page-order #btn-commandes-auto {
  739. top: -7px;
  740. }
  741. /* line 728, ../sass/screen.scss */
  742. #page-order #btn-commandes-auto .btn {
  743. padding: 2px 5px;
  744. }
  745. /* line 730, ../sass/screen.scss */
  746. #page-order #btn-commandes-auto .btn span {
  747. top: 2px;
  748. }
  749. /* line 738, ../sass/screen.scss */
  750. #page-order #bloc-totaux .table-products .depasse {
  751. color: #b32815;
  752. }
  753. /* line 742, ../sass/screen.scss */
  754. #page-order #bloc-totaux .table-products .total strong span {
  755. font-weight: normal;
  756. font-size: 13px;
  757. }
  758. /* line 751, ../sass/screen.scss */
  759. #page-order #commandes-points-vente .tab-pane {
  760. padding-top: 20px;
  761. }
  762. /* line 758, ../sass/screen.scss */
  763. #page-order #commandes-points-vente .recap-pv.no-commande .recettes {
  764. display: none;
  765. }
  766. /* line 763, ../sass/screen.scss */
  767. #page-order #commandes-points-vente .recap-pv .recettes {
  768. float: right;
  769. color: #F39C12;
  770. border: solid 1px #F39C12;
  771. padding: 4px 10px;
  772. -moz-border-radius: 10px;
  773. -webkit-border-radius: 10px;
  774. border-radius: 10px;
  775. font-weight: bold;
  776. position: relative;
  777. top: -3px;
  778. }
  779. /* line 775, ../sass/screen.scss */
  780. #page-order #commandes-points-vente .alert.comment {
  781. display: none;
  782. }
  783. /* line 779, ../sass/screen.scss */
  784. #page-order #commandes-points-vente ul.liste-commandes {
  785. margin-top: 10px;
  786. list-style-type: none;
  787. height: 100%;
  788. max-height: 400px;
  789. margin-left: 0;
  790. padding-left: 0;
  791. margin-top: 0px;
  792. width: 100%;
  793. overflow-y: scroll;
  794. }
  795. /* line 790, ../sass/screen.scss */
  796. #page-order #commandes-points-vente ul.liste-commandes.no-commande {
  797. display: none;
  798. }
  799. /* line 794, ../sass/screen.scss */
  800. #page-order #commandes-points-vente ul.liste-commandes li {
  801. padding: 0;
  802. margin: 0;
  803. }
  804. /* line 797, ../sass/screen.scss */
  805. #page-order #commandes-points-vente ul.liste-commandes li a {
  806. text-align: left;
  807. -moz-border-radius: 0px;
  808. -webkit-border-radius: 0px;
  809. border-radius: 0px;
  810. display: block;
  811. padding: 7px;
  812. color: #333;
  813. }
  814. /* line 804, ../sass/screen.scss */
  815. #page-order #commandes-points-vente ul.liste-commandes li a .montant {
  816. float: right;
  817. color: #F39C12;
  818. font-weight: bold;
  819. }
  820. /* line 809, ../sass/screen.scss */
  821. #page-order #commandes-points-vente ul.liste-commandes li a .montant.paye {
  822. color: #5cb85c;
  823. color: #519951;
  824. }
  825. /* line 815, ../sass/screen.scss */
  826. #page-order #commandes-points-vente ul.liste-commandes li a .glyphicon-comment {
  827. color: #F39C12;
  828. }
  829. /* line 819, ../sass/screen.scss */
  830. #page-order #commandes-points-vente ul.liste-commandes li a:hover, #page-order #commandes-points-vente ul.liste-commandes li a:active, #page-order #commandes-points-vente ul.liste-commandes li a.active {
  831. text-decoration: none;
  832. background-color: #FCF8E3;
  833. outline: none;
  834. border-color: #ccc;
  835. -moz-transition: all 0.1s;
  836. -o-transition: all 0.1s;
  837. -webkit-transition: all 0.1s;
  838. transition: all 0.1s;
  839. }
  840. /* line 830, ../sass/screen.scss */
  841. #page-order #commandes-points-vente .creer-commande,
  842. #page-order #commandes-points-vente .commandes-auto {
  843. width: 100%;
  844. margin-bottom: 10px;
  845. }
  846. /* line 836, ../sass/screen.scss */
  847. #page-order #commandes-points-vente .bloc-commande {
  848. padding-top: 20px;
  849. margin-top: 20px;
  850. display: none;
  851. }
  852. /* line 842, ../sass/screen.scss */
  853. #page-order #commandes-points-vente .title-user {
  854. display: none;
  855. font-size: 19px;
  856. margin-top: 0px;
  857. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  858. }
  859. /* line 848, ../sass/screen.scss */
  860. #page-order #commandes-points-vente .title-user .btn-edit, #page-order #commandes-points-vente .title-user .btn-remove,
  861. #page-order #commandes-points-vente .title-user .btn-cancel, #page-order #commandes-points-vente .title-user .btn-save {
  862. float: right;
  863. position: relative;
  864. top: -6px;
  865. }
  866. /* line 855, ../sass/screen.scss */
  867. #page-order #commandes-points-vente .title-user .btn-edit, #page-order #commandes-points-vente .title-user .btn-cancel {
  868. margin-right: 10px;
  869. }
  870. /* line 859, ../sass/screen.scss */
  871. #page-order #commandes-points-vente .title-user .buttons-save-cancel {
  872. display: none;
  873. }
  874. /* line 863, ../sass/screen.scss */
  875. #page-order #commandes-points-vente .title-user .choix-user {
  876. display: none;
  877. }
  878. /* line 866, ../sass/screen.scss */
  879. #page-order #commandes-points-vente .title-user .choix-user .form-control {
  880. width: 200px;
  881. display: inline;
  882. }
  883. /* line 874, ../sass/screen.scss */
  884. #page-order #commandes-points-vente table.table-produits .td-order {
  885. text-align: center;
  886. }
  887. /* line 877, ../sass/screen.scss */
  888. #page-order #commandes-points-vente table.table-produits input.form-control {
  889. text-align: center;
  890. }
  891. /* line 882, ../sass/screen.scss */
  892. #page-order #commandes-points-vente table.table-produits tr.disabled .td-product {
  893. color: gray;
  894. }
  895. /* line 888, ../sass/screen.scss */
  896. #page-order #commandes-points-vente .td-produit,
  897. #page-order #commandes-points-vente .th-produit {
  898. width: 70%;
  899. }
  900. /* line 893, ../sass/screen.scss */
  901. #page-order #commandes-points-vente .td-commande,
  902. #page-order #commandes-points-vente .th-commande {
  903. width: 30%;
  904. text-align: center;
  905. }
  906. /* line 899, ../sass/screen.scss */
  907. #page-order #commandes-points-vente .td-produit {
  908. text-transform: uppercase;
  909. }
  910. /* line 903, ../sass/screen.scss */
  911. #page-order #commandes-points-vente .td-commande {
  912. font-weight: bold;
  913. }
  914. /* line 907, ../sass/screen.scss */
  915. #page-order #commandes-points-vente .td-total {
  916. font-size: 18px;
  917. text-align: center;
  918. }
  919. /* line 911, ../sass/screen.scss */
  920. #page-order #commandes-points-vente .td-total span {
  921. padding: 2px 10px;
  922. background-color: #F39C12;
  923. color: white;
  924. font-weight: bold;
  925. -moz-border-radius: 8px;
  926. -webkit-border-radius: 8px;
  927. border-radius: 8px;
  928. }
  929. /* line 921, ../sass/screen.scss */
  930. #page-order #commandes-points-vente .td-paiement .buttons-credit {
  931. float: right;
  932. }
  933. /* line 927, ../sass/screen.scss */
  934. #page-order #commandes-points-vente .panel-commande-auto .field-subscriptionform-id_user,
  935. #page-order #commandes-points-vente .panel-commande-auto .field-subscriptionform-id_producer {
  936. display: none;
  937. }
  938. /* line 934, ../sass/screen.scss */
  939. #page-order #commandes-points-vente .panel-commande-auto .days .form-group {
  940. float: left;
  941. margin-right: 10px;
  942. }
  943. /* line 943, ../sass/screen.scss */
  944. #page-order #old-commandes {
  945. display: none;
  946. }
  947. /* line 947, ../sass/screen.scss */
  948. #page-order .form-commandes-point-vente {
  949. margin-top: 20px;
  950. }
  951. /* line 951, ../sass/screen.scss */
  952. #page-order .form-commandes-point-vente table {
  953. border-bottom: solid 1px #e0e0e0;
  954. }
  955. /* line 955, ../sass/screen.scss */
  956. #page-order .form-commandes-point-vente .title-point-sale {
  957. background-color: #fff8e2;
  958. border-left: solid 3px #F39C12;
  959. font-weight: bold;
  960. text-align: left;
  961. padding: 10px;
  962. }
  963. /* line 963, ../sass/screen.scss */
  964. #page-order .form-commandes-point-vente .title-totals {
  965. text-align: center;
  966. }
  967. /* line 967, ../sass/screen.scss */
  968. #page-order .form-commandes-point-vente .border-left {
  969. border-left: solid 1px #e0e0e0;
  970. }
  971. /* line 971, ../sass/screen.scss */
  972. #page-order .form-commandes-point-vente .border-right {
  973. border-right: solid 1px #e0e0e0;
  974. }
  975. /* line 975, ../sass/screen.scss */
  976. #page-order .form-commandes-point-vente input.quantity {
  977. width: 30px;
  978. background-color: white;
  979. border: solid 1px #e0e0e0;
  980. text-align: center;
  981. }
  982. /* line 982, ../sass/screen.scss */
  983. #page-order .form-commandes-point-vente .td-product {
  984. text-align: center;
  985. }
  986. /* line 986, ../sass/screen.scss */
  987. #page-order .form-commandes-point-vente .submit-point-sale {
  988. float: right;
  989. }
  990. /* line 990, ../sass/screen.scss */
  991. #page-order .form-commandes-point-vente .select-user {
  992. background-color: #F9F9F9;
  993. border: solid 1px #e0e0e0;
  994. }
  995. /* line 995, ../sass/screen.scss */
  996. #page-order .form-commandes-point-vente .date-order {
  997. font-size: 12px;
  998. }
  999. /* line 999, ../sass/screen.scss */
  1000. #page-order .form-commandes-point-vente .datepicker, #page-order .form-commandes-point-vente .text {
  1001. background-color: white;
  1002. border: solid 1px #e0e0e0;
  1003. margin-top: 3px;
  1004. width: 100px;
  1005. }
  1006. /* line 1007, ../sass/screen.scss */
  1007. #page-order .form-commandes-point-vente td.center {
  1008. text-align: center;
  1009. }
  1010. /* line 1011, ../sass/screen.scss */
  1011. #page-order .form-commandes-point-vente .depasse {
  1012. color: #b32815;
  1013. }
  1014. /* line 1015, ../sass/screen.scss */
  1015. #page-order .form-commandes-point-vente .total strong span {
  1016. font-weight: normal;
  1017. font-size: 13px;
  1018. }
  1019. /* line 1020, ../sass/screen.scss */
  1020. #page-order .form-commandes-point-vente td.user {
  1021. text-align: left;
  1022. padding: 3px;
  1023. }
  1024. /* line 1023, ../sass/screen.scss */
  1025. #page-order .form-commandes-point-vente td.user .date-order {
  1026. color: gray;
  1027. }
  1028. /* line 1030, ../sass/screen.scss */
  1029. #page-order .table-header-rotated {
  1030. border-top: 0px;
  1031. border-left: 0px;
  1032. border-right: 0px;
  1033. width: 100%;
  1034. width: auto;
  1035. }
  1036. /* line 1037, ../sass/screen.scss */
  1037. #page-order .table-header-rotated .total strong {
  1038. border-bottom: solid 1px gray;
  1039. }
  1040. /* line 1042, ../sass/screen.scss */
  1041. #page-order .table-header-rotated th.row-header {
  1042. width: auto;
  1043. }
  1044. /* line 1046, ../sass/screen.scss */
  1045. #page-order .table-header-rotated td {
  1046. width: 40px;
  1047. border-top: 1px solid #dddddd;
  1048. border-left: 1px solid #dddddd;
  1049. border-right: 1px solid #dddddd;
  1050. vertical-align: middle;
  1051. text-align: center;
  1052. }
  1053. /* line 1055, ../sass/screen.scss */
  1054. #page-order .table-header-rotated th.rotate-45 {
  1055. font-weight: normal;
  1056. height: 80px;
  1057. width: 40px;
  1058. min-width: 40px;
  1059. max-width: 40px;
  1060. position: relative;
  1061. vertical-align: bottom;
  1062. padding: 0;
  1063. font-size: 14px;
  1064. line-height: 1;
  1065. border: 0px none;
  1066. }
  1067. /* line 1069, ../sass/screen.scss */
  1068. #page-order .table-header-rotated th.rotate-45 > div {
  1069. background-color: #F5F5F5;
  1070. position: relative;
  1071. top: 0px;
  1072. left: 40px;
  1073. /* 80 * tan(45) / 2 = 40 where 80 is the height on the cell and 45 is the transform angle*/
  1074. height: 100%;
  1075. -ms-transform: skew(-45deg, 0deg);
  1076. -moz-transform: skew(-45deg, 0deg);
  1077. -webkit-transform: skew(-45deg, 0deg);
  1078. -o-transform: skew(-45deg, 0deg);
  1079. transform: skew(-45deg, 0deg);
  1080. overflow: hidden;
  1081. border-left: 1px solid #dddddd;
  1082. border-right: 1px solid #dddddd;
  1083. border-top: 1px solid #dddddd;
  1084. }
  1085. /* line 1086, ../sass/screen.scss */
  1086. #page-order .table-header-rotated th.rotate-45 span {
  1087. -ms-transform: skew(45deg, 0deg) rotate(315deg);
  1088. -moz-transform: skew(45deg, 0deg) rotate(315deg);
  1089. -webkit-transform: skew(45deg, 0deg) rotate(315deg);
  1090. -o-transform: skew(45deg, 0deg) rotate(315deg);
  1091. transform: skew(45deg, 0deg) rotate(315deg);
  1092. position: absolute;
  1093. bottom: 30px;
  1094. /* 40 cos(45) = 28 with an additional 2px margin*/
  1095. left: -25px;
  1096. /*Because it looked good, but there is probably a mathematical link here as well*/
  1097. display: inline-block;
  1098. width: 85px;
  1099. /* 80 / cos(45) - 40 cos (45) = 85 where 80 is the height of the cell, 40 the width of the cell and 45 the transform angle*/
  1100. text-align: left;
  1101. }
  1102. /* line 1102, ../sass/screen.scss */
  1103. #page-order .table-header-rotated .disabled {
  1104. color: gray;
  1105. }
  1106. /* line 1110, ../sass/screen.scss */
  1107. .product-create #days-distribution .form-group, .product-update #days-distribution .form-group {
  1108. float: left;
  1109. margin-right: 15px;
  1110. }
  1111. /* line 1114, ../sass/screen.scss */
  1112. .product-create #days-distribution .form-group label, .product-update #days-distribution .form-group label {
  1113. font-weight: normal;
  1114. }
  1115. /* line 1119, ../sass/screen.scss */
  1116. .product-create .field-product-id_producer, .product-update .field-product-id_producer {
  1117. display: none;
  1118. }
  1119. /* line 1124, ../sass/screen.scss */
  1120. .table-striped > tbody > tr:nth-of-type(2n) {
  1121. background-color: white;
  1122. }
  1123. /* communiquer */
  1124. /* line 1133, ../sass/screen.scss */
  1125. .communicate-index #email .btn-point-sale {
  1126. margin-bottom: 8px;
  1127. margin-right: 5px;
  1128. }
  1129. /* line 1140, ../sass/screen.scss */
  1130. .communicate-instructions {
  1131. border: solid 1px #e0e0e0;
  1132. padding: 10px;
  1133. -moz-border-radius: 10px;
  1134. -webkit-border-radius: 10px;
  1135. border-radius: 10px;
  1136. margin-bottom: 30px;
  1137. font-family: "Arial";
  1138. }
  1139. /* line 1149, ../sass/screen.scss */
  1140. .communicate-instructions .header .logo {
  1141. display: none;
  1142. float: left;
  1143. width: 75px;
  1144. padding-right: 20px;
  1145. padding-top: 10px;
  1146. }
  1147. /* line 1156, ../sass/screen.scss */
  1148. .communicate-instructions .header .logo img {
  1149. width: 75px;
  1150. }
  1151. /* line 1162, ../sass/screen.scss */
  1152. .communicate-instructions h1, .communicate-instructions h2, .communicate-instructions h3, .communicate-instructions h4 {
  1153. text-align: center;
  1154. }
  1155. /* line 1166, ../sass/screen.scss */
  1156. .communicate-instructions h1 {
  1157. font-family: "highvoltageregular";
  1158. font-size: 40px;
  1159. line-height: 40px;
  1160. margin-top: 0px;
  1161. margin-bottom: 0px;
  1162. font-weight: normal;
  1163. }
  1164. /* line 1175, ../sass/screen.scss */
  1165. .communicate-instructions h2 {
  1166. margin-top: 0px;
  1167. font-family: "capsuularegular";
  1168. font-size: 20px;
  1169. margin-top: 0px;
  1170. position: relative;
  1171. left: 2px;
  1172. font-weight: normal;
  1173. }
  1174. /* line 1185, ../sass/screen.scss */
  1175. .communicate-instructions h3 {
  1176. font-size: 18px;
  1177. color: #F39C12;
  1178. margin-top: 0px;
  1179. margin-bottom: 0px;
  1180. line-height: 20px;
  1181. font-family: "capsuularegular";
  1182. }
  1183. /* line 1194, ../sass/screen.scss */
  1184. .communicate-instructions h4 {
  1185. font-size: 16px;
  1186. margin-top: 8px;
  1187. font-weight: normal;
  1188. font-family: "capsuularegular";
  1189. }
  1190. /* line 1200, ../sass/screen.scss */
  1191. .communicate-instructions h4 span {
  1192. border-bottom: dotted 1px black;
  1193. }
  1194. /* line 1207, ../sass/screen.scss */
  1195. .communicate-instructions-inset {
  1196. width: auto;
  1197. margin-top: 20px;
  1198. }
  1199. /* line 1211, ../sass/screen.scss */
  1200. .communicate-instructions-inset .header .logo {
  1201. width: 60px;
  1202. margin-right: 20px;
  1203. padding-top: 5px;
  1204. }
  1205. /* line 1216, ../sass/screen.scss */
  1206. .communicate-instructions-inset .header .logo img {
  1207. width: 60px;
  1208. }
  1209. /* line 1222, ../sass/screen.scss */
  1210. .communicate-instructions-inset .header h1 {
  1211. margin-bottom: 3px;
  1212. }
  1213. /* line 1228, ../sass/screen.scss */
  1214. .communicate-instructions-inset h3 {
  1215. margin-top: 15px;
  1216. margin-bottom: 0px;
  1217. font-size: 18px;
  1218. }
  1219. /* line 1239, ../sass/screen.scss */
  1220. .block-instructions-pdf {
  1221. width: 49.9%;
  1222. float: left;
  1223. border-bottom: dotted 1px gray;
  1224. }
  1225. /* line 1245, ../sass/screen.scss */
  1226. .block-instructions-border {
  1227. border-right: dotted 1px gray;
  1228. border-bottom: dotted 1px gray;
  1229. }
  1230. /* line 1250, ../sass/screen.scss */
  1231. .communicate-instructions-pdf {
  1232. border: 0px none;
  1233. -moz-border-radius: 0px;
  1234. -webkit-border-radius: 0px;
  1235. border-radius: 0px;
  1236. margin-bottom: 0px;
  1237. padding: 20px 0px 20px 30px;
  1238. }
  1239. /* line 1258, ../sass/screen.scss */
  1240. .communicate-instructions-pdf .header .logo {
  1241. float: left;
  1242. width: 55px;
  1243. padding-right: 15px;
  1244. padding-top: 10px;
  1245. }
  1246. /* line 1264, ../sass/screen.scss */
  1247. .communicate-instructions-pdf .header .logo img {
  1248. width: 55px;
  1249. }
  1250. /* line 1268, ../sass/screen.scss */
  1251. .communicate-instructions-pdf .header h1 {
  1252. font-size: 32px;
  1253. }
  1254. /* line 1271, ../sass/screen.scss */
  1255. .communicate-instructions-pdf .header h2 {
  1256. font-size: 16px;
  1257. }
  1258. /* line 1276, ../sass/screen.scss */
  1259. .communicate-instructions-pdf h3 {
  1260. font-weight: normal;
  1261. }
  1262. /* line 1281, ../sass/screen.scss */
  1263. .block-instructions-bottom {
  1264. border-bottom: 0px none;
  1265. border-bottom: solid 1px white;
  1266. }
  1267. /* abonnements */
  1268. /* line 1291, ../sass/screen.scss */
  1269. .subscription-form #block-select-user {
  1270. padding-left: 0px;
  1271. }
  1272. /* line 1295, ../sass/screen.scss */
  1273. .subscription-form #or-user {
  1274. font-size: 20px;
  1275. text-align: center;
  1276. }
  1277. /* line 1298, ../sass/screen.scss */
  1278. .subscription-form #or-user span {
  1279. position: relative;
  1280. top: 24px;
  1281. }
  1282. /* line 1304, ../sass/screen.scss */
  1283. .subscription-form .field-subscriptionform-id_producer {
  1284. display: none;
  1285. }
  1286. /* line 1308, ../sass/screen.scss */
  1287. .subscription-form .days .form-group {
  1288. float: left;
  1289. margin-right: 20px;
  1290. }
  1291. /* line 1315, ../sass/screen.scss */
  1292. .subscription-form .products .table {
  1293. width: 500px;
  1294. }
  1295. /* line 1318, ../sass/screen.scss */
  1296. .subscription-form .products .quantity {
  1297. text-align: center;
  1298. }
  1299. /* points de vente */
  1300. /* line 1327, ../sass/screen.scss */
  1301. .point-sale-form #pointsale-users {
  1302. display: none;
  1303. height: 500px;
  1304. overflow-y: scroll;
  1305. }
  1306. /* line 1331, ../sass/screen.scss */
  1307. .point-sale-form #pointsale-users label {
  1308. font-weight: normal;
  1309. display: block;
  1310. }
  1311. /* line 1335, ../sass/screen.scss */
  1312. .point-sale-form #pointsale-users .comment {
  1313. display: none;
  1314. margin-left: 17px;
  1315. width: 200px;
  1316. }
  1317. /* line 1343, ../sass/screen.scss */
  1318. .point-sale-form #delivery-days .form-group {
  1319. float: left;
  1320. margin-right: 15px;
  1321. }
  1322. /* line 1347, ../sass/screen.scss */
  1323. .point-sale-form #delivery-days .form-group label {
  1324. font-weight: normal;
  1325. }
  1326. /* utilisateurs */
  1327. /* line 1357, ../sass/screen.scss */
  1328. #menu-users #nav-points-sale {
  1329. margin-bottom: 30px;
  1330. }
  1331. /* line 1361, ../sass/screen.scss */
  1332. #menu-users #submenu {
  1333. margin-bottom: 30px;
  1334. text-align: left;
  1335. }
  1336. /* line 1366, ../sass/screen.scss */
  1337. #menu-users a {
  1338. margin-bottom: 15px;
  1339. }
  1340. /* line 1372, ../sass/screen.scss */
  1341. .user-index .input-group {
  1342. width: 180px;
  1343. }
  1344. /* line 1375, ../sass/screen.scss */
  1345. .user-index .input-group .input-credit {
  1346. text-align: center;
  1347. }
  1348. /* line 1382, ../sass/screen.scss */
  1349. .user-credit .the-credit {
  1350. float: right;
  1351. font-weight: bold;
  1352. background-color: #F39C12;
  1353. color: white;
  1354. -moz-border-radius: 8px;
  1355. -webkit-border-radius: 8px;
  1356. border-radius: 8px;
  1357. padding: 3px 10px;
  1358. padding-top: 7px;
  1359. position: relative;
  1360. top: -12px;
  1361. }
  1362. /* facturation */
  1363. /* line 1397, ../sass/screen.scss */
  1364. #free-price {
  1365. padding: 20px;
  1366. background-color: #F9F9F9;
  1367. }
  1368. /* line 1401, ../sass/screen.scss */
  1369. #free-price h2 {
  1370. font-family: "myriadpro-it";
  1371. }
  1372. /* line 1405, ../sass/screen.scss */
  1373. #free-price .amount span {
  1374. font-size: 25px;
  1375. color: white;
  1376. background-color: #F39C12;
  1377. -moz-border-radius: 5px;
  1378. -webkit-border-radius: 5px;
  1379. border-radius: 5px;
  1380. padding: 3px 10px;
  1381. padding-top: 7px;
  1382. font-family: "myriadpro-regular";
  1383. }
  1384. /* line 1416, ../sass/screen.scss */
  1385. #free-price label {
  1386. text-transform: uppercase;
  1387. font-family: "myriadpro-light";
  1388. font-size: 20px;
  1389. }
  1390. /* line 1421, ../sass/screen.scss */
  1391. #free-price label span {
  1392. font-size: 16px;
  1393. }
  1394. /* line 1427, ../sass/screen.scss */
  1395. #free-price .field-producer-free_price .input-group {
  1396. width: 200px;
  1397. }
  1398. /* line 1433, ../sass/screen.scss */
  1399. #free-price .field-user-free_price label {
  1400. display: none;
  1401. }
  1402. /* line 1438, ../sass/screen.scss */
  1403. #free-price #producer-free_price {
  1404. width: 100px;
  1405. height: 60px;
  1406. font-size: 30px;
  1407. padding: 10px;
  1408. text-align: center;
  1409. }
  1410. /* line 1448, ../sass/screen.scss */
  1411. .development-index ul#tabs-status-developments {
  1412. margin-bottom: 30px;
  1413. border-bottom: solid 3px #F39C12;
  1414. }
  1415. /* line 1452, ../sass/screen.scss */
  1416. .development-index ul#tabs-status-developments a {
  1417. text-transform: uppercase;
  1418. }
  1419. /* line 1455, ../sass/screen.scss */
  1420. .development-index ul#tabs-status-developments .active {
  1421. border: 0px none;
  1422. background: none;
  1423. }
  1424. /* line 1458, ../sass/screen.scss */
  1425. .development-index ul#tabs-status-developments .active a {
  1426. background-color: #F39C12;
  1427. color: white;
  1428. }
  1429. /* line 1466, ../sass/screen.scss */
  1430. .development-index #tab-developments .btn-group-priority {
  1431. width: 100%;
  1432. margin-bottom: 5px;
  1433. }
  1434. /* line 1470, ../sass/screen.scss */
  1435. .development-index #tab-developments .btn-group-priority .btn-priority {
  1436. display: block;
  1437. float: none;
  1438. width: 100%;
  1439. }
  1440. /* line 1477, ../sass/screen.scss */
  1441. .development-index #tab-developments .label-priority {
  1442. display: block;
  1443. width: 100%;
  1444. margin-bottom: 2px;
  1445. padding: 5px 8px;
  1446. }
  1447. /* stats */
  1448. /* line 1490, ../sass/screen.scss */
  1449. .stats-products #nav-year {
  1450. float: right;
  1451. }
  1452. /* line 1495, ../sass/screen.scss */
  1453. .stats-products tr.month th {
  1454. text-align: center;
  1455. }
  1456. /* line 1500, ../sass/screen.scss */
  1457. .stats-products tr.sub-head th {
  1458. font-weight: normal;
  1459. font-size: 12px;
  1460. }
  1461. /* line 1506, ../sass/screen.scss */
  1462. .stats-products td.name {
  1463. text-transform: uppercase;
  1464. }
  1465. /* line 1510, ../sass/screen.scss */
  1466. .stats-products td.align-center {
  1467. text-align: center;
  1468. }
  1469. /* line 4, ../sass/_adminlte.scss */
  1470. body.skin-black .main-header .logo {
  1471. background-color: white;
  1472. font-family: 'highvoltageregular';
  1473. font-size: 23px;
  1474. }
  1475. /* line 9, ../sass/_adminlte.scss */
  1476. body.skin-black .main-header .logo:hover, body.skin-black .main-header .logo:focus {
  1477. background-color: white;
  1478. text-decoration: none;
  1479. }
  1480. /* line 14, ../sass/_adminlte.scss */
  1481. body.skin-black .main-header .logo .logo-lg img {
  1482. width: 30px;
  1483. height: 30px;
  1484. }
  1485. /* line 20, ../sass/_adminlte.scss */
  1486. body.skin-black .main-header .logo .logo-mini img {
  1487. width: 30px;
  1488. height: 30px;
  1489. }
  1490. /* line 26, ../sass/_adminlte.scss */
  1491. body.skin-black .main-header .navbar {
  1492. background-color: white;
  1493. }
  1494. /* line 29, ../sass/_adminlte.scss */
  1495. body.skin-black .main-header .navbar .producer-panel {
  1496. position: relative;
  1497. float: left;
  1498. padding: 15px;
  1499. padding-left: 50px;
  1500. margin-left: 7px;
  1501. }
  1502. /* line 36, ../sass/_adminlte.scss */
  1503. body.skin-black .main-header .navbar .producer-panel.without-logo {
  1504. padding-left: 10px;
  1505. }
  1506. /* line 40, ../sass/_adminlte.scss */
  1507. body.skin-black .main-header .navbar .producer-panel .logo {
  1508. position: absolute;
  1509. top: 5px;
  1510. left: 0px;
  1511. background-color: white;
  1512. width: 40px;
  1513. height: 40px;
  1514. -moz-border-radius: 50px;
  1515. -webkit-border-radius: 50px;
  1516. border-radius: 50px;
  1517. border: solid 1px #e0e0e0;
  1518. text-align: center;
  1519. overflow: hidden;
  1520. }
  1521. /* line 52, ../sass/_adminlte.scss */
  1522. body.skin-black .main-header .navbar .producer-panel .logo .img-logo {
  1523. position: absolute;
  1524. top: 50%;
  1525. left: 50%;
  1526. transform: translate(-50%, -50%);
  1527. max-width: 35px;
  1528. max-height: 35px;
  1529. }
  1530. /* line 62, ../sass/_adminlte.scss */
  1531. body.skin-black .main-header .navbar .producer-panel .title {
  1532. position: relative;
  1533. top: 2px;
  1534. text-transform: uppercase;
  1535. }
  1536. /* line 69, ../sass/_adminlte.scss */
  1537. body.skin-black .main-header .navbar .sidebar-toggle {
  1538. color: #333;
  1539. }
  1540. /* line 73, ../sass/_adminlte.scss */
  1541. body.skin-black .main-header .navbar .link-support {
  1542. float: left;
  1543. padding: 15px 15px;
  1544. border-right: solid 1px #e0e0e0;
  1545. color: #333;
  1546. }
  1547. /* line 79, ../sass/_adminlte.scss */
  1548. body.skin-black .main-header .navbar .link-support:hover {
  1549. text-decoration: none;
  1550. color: #F39C12;
  1551. }
  1552. /* line 85, ../sass/_adminlte.scss */
  1553. body.skin-black .main-header .navbar .navbar-custom-menu .navbar-nav > li > a,
  1554. body.skin-black .main-header .navbar .navbar-right > li > a {
  1555. border-left: solid 1px #e0e0e0;
  1556. color: #333;
  1557. }
  1558. /* line 91, ../sass/_adminlte.scss */
  1559. body.skin-black .main-header .navbar .nav > li > a:hover, body.skin-black .main-header .navbar .nav > li > a:active, body.skin-black .main-header .navbar .nav > li > a:focus,
  1560. body.skin-black .main-header .navbar .nav .open > a, body.skin-black .main-header .navbar .nav .open > a:hover, body.skin-black .main-header .navbar .nav .open > a:focus,
  1561. body.skin-black .main-header .navbar .nav > .active > a {
  1562. color: #F39C12;
  1563. }
  1564. /* line 97, ../sass/_adminlte.scss */
  1565. body.skin-black .main-header .navbar .dropdown-menu {
  1566. -moz-box-shadow: 0px 0px 4px gray;
  1567. -webkit-box-shadow: 0px 0px 4px gray;
  1568. box-shadow: 0px 0px 4px gray;
  1569. }
  1570. /* line 102, ../sass/_adminlte.scss */
  1571. body.skin-black .main-header .logo, body.skin-black .main-header .navbar .sidebar-toggle {
  1572. border-right: solid 1px #e0e0e0;
  1573. }
  1574. /* line 106, ../sass/_adminlte.scss */
  1575. body.skin-black .main-header .link-control-sidebar {
  1576. display: none;
  1577. }
  1578. /* line 111, ../sass/_adminlte.scss */
  1579. body.skin-black .main-header .notifications-menu ul.menu {
  1580. max-height: 300px;
  1581. }
  1582. /* line 114, ../sass/_adminlte.scss */
  1583. body.skin-black .main-header .notifications-menu ul.menu li a {
  1584. padding-top: 4px;
  1585. padding-bottom: 4px;
  1586. }
  1587. /* line 118, ../sass/_adminlte.scss */
  1588. body.skin-black .main-header .notifications-menu ul.menu li a h5 {
  1589. margin-bottom: 2px;
  1590. }
  1591. /* line 121, ../sass/_adminlte.scss */
  1592. body.skin-black .main-header .notifications-menu ul.menu li a h5 small {
  1593. float: right;
  1594. }
  1595. /* line 126, ../sass/_adminlte.scss */
  1596. body.skin-black .main-header .notifications-menu ul.menu li a p {
  1597. margin-left: 10px;
  1598. }
  1599. /* line 136, ../sass/_adminlte.scss */
  1600. body.skin-black .main-header .navbar .nav li.producer-menu .label {
  1601. position: relative;
  1602. top: -2px;
  1603. left: 0px;
  1604. }
  1605. /* line 142, ../sass/_adminlte.scss */
  1606. body.skin-black .main-header .navbar .nav li.producer-menu #link-display-producers-offline {
  1607. color: #F39C12;
  1608. }
  1609. /* line 146, ../sass/_adminlte.scss */
  1610. body.skin-black .main-header .navbar .nav li.producer-menu .offline {
  1611. display: none;
  1612. }
  1613. /* line 153, ../sass/_adminlte.scss */
  1614. body.skin-black .sidebar .sidebar-menu > li.header {
  1615. color: #899397;
  1616. }
  1617. /* line 158, ../sass/_adminlte.scss */
  1618. body.skin-black .sidebar-menu > li.active > a {
  1619. border-color: #F39C12;
  1620. }
  1621. /* line 163, ../sass/_adminlte.scss */
  1622. body.skin-black section.sidebar .user-panel {
  1623. text-align: center;
  1624. }
  1625. /* line 166, ../sass/_adminlte.scss */
  1626. body.skin-black section.sidebar .user-panel .image {
  1627. margin-bottom: 3px;
  1628. }
  1629. /* line 170, ../sass/_adminlte.scss */
  1630. body.skin-black section.sidebar .user-panel .title {
  1631. font-weight: bold;
  1632. color: white;
  1633. }
  1634. /* line 177, ../sass/_adminlte.scss */
  1635. body.skin-black .content-wrapper {
  1636. background-color: #f5f5f5;
  1637. }
  1638. /* line 180, ../sass/_adminlte.scss */
  1639. body.skin-black .content-wrapper .content-header {
  1640. background-color: #F5F5F5;
  1641. padding-bottom: 15px;
  1642. border-bottom: solid 1px #e0e0e0;
  1643. border-top: solid 1px #e0e0e0;
  1644. }
  1645. /* line 186, ../sass/_adminlte.scss */
  1646. body.skin-black .content-wrapper .content-header .btn {
  1647. padding: 3px 6px;
  1648. font-size: 10px;
  1649. font-family: Arial;
  1650. text-transform: uppercase;
  1651. }
  1652. /* line 193, ../sass/_adminlte.scss */
  1653. body.skin-black .content-wrapper .content-header h1 {
  1654. font-family: 'myriadpro-light';
  1655. font-size: 20px;
  1656. }
  1657. /* line 199, ../sass/_adminlte.scss */
  1658. body.skin-black .content-wrapper a {
  1659. color: #e08e0b;
  1660. }
  1661. /* line 203, ../sass/_adminlte.scss */
  1662. body.skin-black .content-wrapper .btn {
  1663. color: white;
  1664. }
  1665. /* line 207, ../sass/_adminlte.scss */
  1666. body.skin-black .content-wrapper .btn-default {
  1667. color: #333;
  1668. background-color: white;
  1669. }
  1670. /* line 212, ../sass/_adminlte.scss */
  1671. body.skin-black .content-wrapper .btn-primary {
  1672. background-color: #F39C12;
  1673. color: white;
  1674. border-color: #F39C12;
  1675. }
  1676. /* line 219, ../sass/_adminlte.scss */
  1677. body.skin-black .content-wrapper .alert a {
  1678. color: white;
  1679. }
  1680. /* line 222, ../sass/_adminlte.scss */
  1681. body.skin-black .content-wrapper .alert a.btn {
  1682. color: #333;
  1683. text-decoration: none;
  1684. }
  1685. /* line 227, ../sass/_adminlte.scss */
  1686. body.skin-black .content-wrapper .alert .close {
  1687. font-size: 30px;
  1688. position: relative;
  1689. top: -15px;
  1690. text-decoration: none;
  1691. color: white;
  1692. opacity: 0.6;
  1693. }
  1694. /* line 235, ../sass/_adminlte.scss */
  1695. body.skin-black .content-wrapper .alert .close:hover {
  1696. opacity: 1;
  1697. }
  1698. /* line 242, ../sass/_adminlte.scss */
  1699. body.skin-black .content-wrapper .callout h4 .fa {
  1700. margin-right: 7px;
  1701. }
  1702. /* line 245, ../sass/_adminlte.scss */
  1703. body.skin-black .content-wrapper .callout a {
  1704. color: white;
  1705. }
  1706. /* line 248, ../sass/_adminlte.scss */
  1707. body.skin-black .content-wrapper .callout .btn {
  1708. color: #333;
  1709. text-decoration: none;
  1710. }
  1711. /* line 255, ../sass/_adminlte.scss */
  1712. body.skin-black .content-wrapper .table th {
  1713. font-size: 13px;
  1714. }
  1715. /* line 258, ../sass/_adminlte.scss */
  1716. body.skin-black .content-wrapper .table th.column-actions, body.skin-black .content-wrapper .table td.column-actions {
  1717. width: 150px;
  1718. text-align: right;
  1719. }
  1720. /* line 262, ../sass/_adminlte.scss */
  1721. body.skin-black .content-wrapper .table td.text-small, body.skin-black .content-wrapper .table th.text-small {
  1722. font-size: 12px;
  1723. }
  1724. /* line 267, ../sass/_adminlte.scss */
  1725. body.skin-black .content-wrapper .pagination > .active > a, body.skin-black .content-wrapper .pagination > .active > span, body.skin-black .content-wrapper .pagination > .active > a:hover, body.skin-black .content-wrapper .pagination > .active > span:hover, body.skin-black .content-wrapper .pagination > .active > a:focus, body.skin-black .content-wrapper .pagination > .active > span:focus {
  1726. background-color: #F39C12;
  1727. border: solid 1px #F39C12;
  1728. color: white;
  1729. }
  1730. /* line 272, ../sass/_adminlte.scss */
  1731. body.skin-black .content-wrapper .pagination > li > a, body.skin-black .content-wrapper .pagination > li > span {
  1732. color: #F39C12;
  1733. }
  1734. /* line 274, ../sass/_adminlte.scss */
  1735. body.skin-black .content-wrapper .pagination > li > a:hover, body.skin-black .content-wrapper .pagination > li > span:hover {
  1736. color: #c87f0a;
  1737. }
  1738. /* line 279, ../sass/_adminlte.scss */
  1739. body.skin-black .content-wrapper .submenu {
  1740. margin-bottom: 25px;
  1741. }
  1742. /* line 285, ../sass/_adminlte.scss */
  1743. body.skin-black .main-footer a {
  1744. color: #F39C12;
  1745. }
  1746. /* line 291, ../sass/_adminlte.scss */
  1747. body.login-page {
  1748. background: none;
  1749. background-color: white;
  1750. }
  1751. /* line 295, ../sass/_adminlte.scss */
  1752. body.login-page .login-box .login-logo {
  1753. text-align: center;
  1754. font-family: 'highvoltageregular';
  1755. }
  1756. /* line 299, ../sass/_adminlte.scss */
  1757. body.login-page .login-box .login-logo img {
  1758. width: 50px;
  1759. }
  1760. /* line 304, ../sass/_adminlte.scss */
  1761. body.login-page .login-box .login-box-body .btn-primary {
  1762. background-color: #F39C12;
  1763. border-color: #F39C12;
  1764. padding: 5px 10px;
  1765. }
  1766. /* line 309, ../sass/_adminlte.scss */
  1767. body.login-page .login-box .login-box-body .btn-primary:active {
  1768. background-color: #f4a62a;
  1769. border-color: #F39C12;
  1770. }
  1771. /* line 315, ../sass/_adminlte.scss */
  1772. body.login-page .login-box .login-box-body a {
  1773. color: #F39C12;
  1774. }
  1775. /* line 317, ../sass/_adminlte.scss */
  1776. body.login-page .login-box .login-box-body a:hover {
  1777. color: #f4a62a;
  1778. }
  1779. /* line 2, ../sass/_alerts.scss */
  1780. #app-alerts {
  1781. position: fixed;
  1782. bottom: 30px;
  1783. right: 15px;
  1784. width: 300px;
  1785. height: auto;
  1786. z-index: 9999;
  1787. }
  1788. /* line 10, ../sass/_alerts.scss */
  1789. #app-alerts .slide-fade-enter-active {
  1790. -moz-transition: all 0.3s ease;
  1791. -o-transition: all 0.3s ease;
  1792. -webkit-transition: all 0.3s ease;
  1793. transition: all 0.3s ease;
  1794. }
  1795. /* line 13, ../sass/_alerts.scss */
  1796. #app-alerts .slide-fade-leave-active {
  1797. -moz-transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
  1798. -o-transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
  1799. -webkit-transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
  1800. transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
  1801. }
  1802. /* line 16, ../sass/_alerts.scss */
  1803. #app-alerts .slide-fade-enter, #app-alerts .slide-fade-leave-to {
  1804. -moz-transform: translateX(10px);
  1805. -ms-transform: translateX(10px);
  1806. -webkit-transform: translateX(10px);
  1807. transform: translateX(10px);
  1808. opacity: 0;
  1809. }
  1810. /* line 4, ../sass/site/_index.scss */
  1811. .site-index #distributions .info-box {
  1812. border: solid 1px #e0e0e0;
  1813. }
  1814. /* line 6, ../sass/site/_index.scss */
  1815. .site-index #distributions .info-box .date {
  1816. text-transform: uppercase;
  1817. font-size: 12px;
  1818. line-height: 20px;
  1819. padding-top: 10px;
  1820. }
  1821. /* line 12, ../sass/site/_index.scss */
  1822. .site-index #distributions .info-box .date span {
  1823. display: block;
  1824. }
  1825. /* line 18, ../sass/site/_index.scss */
  1826. .site-index #distributions .info-box .date .num {
  1827. font-size: 30px;
  1828. padding-top: 5px;
  1829. padding-bottom: 5px;
  1830. }
  1831. /* line 30, ../sass/site/_index.scss */
  1832. .site-index #distributions .info-box-content .buttons {
  1833. margin-top: 10px;
  1834. }
  1835. /* line 4, ../sass/subscription/_index.scss */
  1836. .subscription-index .table .column-auto-payment {
  1837. width: 50px;
  1838. }
  1839. /* line 3, ../sass/subscription/_form.scss */
  1840. .subscription-form .field-subscriptionform-id {
  1841. display: none;
  1842. }
  1843. /* line 7, ../sass/subscription/_form.scss */
  1844. .subscription-form table#products .input-quantity {
  1845. text-align: center;
  1846. border-right: 0px none;
  1847. }
  1848. /* line 11, ../sass/subscription/_form.scss */
  1849. .subscription-form table#products .input-group-addon {
  1850. padding: 5px;
  1851. padding-left: 0px;
  1852. margin: 0px;
  1853. border-left: 0px none;
  1854. border-right: 0px none;
  1855. }
  1856. /* line 18, ../sass/subscription/_form.scss */
  1857. .subscription-form table#products .select-unit {
  1858. padding: 0px;
  1859. width: 58px;
  1860. text-align: center;
  1861. height: 22px;
  1862. }
  1863. /* line 24, ../sass/subscription/_form.scss */
  1864. .subscription-form table#products .glyphicon-warning-sign {
  1865. position: relative;
  1866. top: 10px;
  1867. }
  1868. /* line 3, ../sass/product/_index.scss */
  1869. .product-index .td-photo {
  1870. max-width: 100px;
  1871. width: 100px;
  1872. }
  1873. /* line 7, ../sass/product/_index.scss */
  1874. .product-index .photo-product {
  1875. max-width: 100px;
  1876. }
  1877. /* line 11, ../sass/product/_index.scss */
  1878. .product-index .ui-state-highlight {
  1879. height: 75px;
  1880. background-color: white;
  1881. }
  1882. @media screen and (max-width: 768px) {
  1883. /* line 17, ../sass/product/_index.scss */
  1884. .product-index .td-photo {
  1885. display: none;
  1886. }
  1887. }
  1888. /* line 6, ../sass/product/_form.scss */
  1889. .product-create #product-active label,
  1890. .product-update #product-active label {
  1891. margin-right: 15px;
  1892. }
  1893. /* line 10, ../sass/product/_form.scss */
  1894. .product-create #days-production,
  1895. .product-create #availability-points-sale,
  1896. .product-update #days-production,
  1897. .product-update #availability-points-sale {
  1898. margin-top: 30px;
  1899. }
  1900. /* line 14, ../sass/product/_form.scss */
  1901. .product-create #days-production h2,
  1902. .product-create #availability-points-sale h2,
  1903. .product-update #days-production h2,
  1904. .product-update #availability-points-sale h2 {
  1905. font-size: 20px;
  1906. }
  1907. /* line 20, ../sass/product/_form.scss */
  1908. .product-create #days-production label,
  1909. .product-update #days-production label {
  1910. font-weight: normal;
  1911. }
  1912. /* line 26, ../sass/product/_form.scss */
  1913. .product-create #availability-points-sale #label-availability-points-sale,
  1914. .product-update #availability-points-sale #label-availability-points-sale {
  1915. display: block;
  1916. margin-bottom: 6px;
  1917. }
  1918. /* line 30, ../sass/product/_form.scss */
  1919. .product-create #availability-points-sale #label-availability-points-sale span,
  1920. .product-update #availability-points-sale #label-availability-points-sale span {
  1921. border-bottom: dotted 1px black;
  1922. }
  1923. /* line 36, ../sass/product/_form.scss */
  1924. .product-create #availability-points-sale .field-product-available_on_points_sale label.control-label,
  1925. .product-update #availability-points-sale .field-product-available_on_points_sale label.control-label {
  1926. margin-bottom: 0px;
  1927. position: relative;
  1928. top: 3px;
  1929. }
  1930. /* line 44, ../sass/product/_form.scss */
  1931. .product-create #availability-points-sale #product-pointssale label,
  1932. .product-update #availability-points-sale #product-pointssale label {
  1933. display: block;
  1934. font-weight: normal;
  1935. }
  1936. /**
  1937. Copyright distrib (2018)
  1938. contact@opendistrib.net
  1939. Ce logiciel est un programme informatique servant à aider les producteurs
  1940. à distribuer leur production en circuits courts.
  1941. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  1942. respectant les principes de diffusion des logiciels libres. Vous pouvez
  1943. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  1944. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  1945. sur le site "http://www.cecill.info".
  1946. En contrepartie de l'accessibilité au code source et des droits de copie,
  1947. de modification et de redistribution accordés par cette licence, il n'est
  1948. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  1949. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  1950. titulaire des droits patrimoniaux et les concédants successifs.
  1951. A cet égard l'attention de l'utilisateur est attirée sur les risques
  1952. associés au chargement, à l'utilisation, à la modification et/ou au
  1953. développement et à la reproduction du logiciel par l'utilisateur étant
  1954. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  1955. manipuler et qui le réserve donc à des développeurs et des professionnels
  1956. avertis possédant des connaissances informatiques approfondies. Les
  1957. utilisateurs sont donc invités à charger et tester l'adéquation du
  1958. logiciel à leurs besoins dans des conditions permettant d'assurer la
  1959. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  1960. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  1961. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  1962. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  1963. termes.
  1964. */
  1965. /* line 40, ../sass/distribution/_index.scss */
  1966. .distribution-index .content-header .date {
  1967. font-weight: bold;
  1968. }
  1969. /* line 45, ../sass/distribution/_index.scss */
  1970. .distribution-index #wrapper-app-distribution-index {
  1971. display: none;
  1972. }
  1973. /* line 48, ../sass/distribution/_index.scss */
  1974. .distribution-index #wrapper-app-distribution-index.loaded {
  1975. display: block;
  1976. }
  1977. /* line 53, ../sass/distribution/_index.scss */
  1978. .distribution-index #app-distribution-index {
  1979. position: relative;
  1980. }
  1981. /* line 57, ../sass/distribution/_index.scss */
  1982. .distribution-index #distribution-date {
  1983. display: none;
  1984. }
  1985. /* line 61, ../sass/distribution/_index.scss */
  1986. .distribution-index #calendar {
  1987. margin-bottom: 15px;
  1988. }
  1989. /* line 64, ../sass/distribution/_index.scss */
  1990. .distribution-index #calendar .c-header .c-title-layout .c-title-popover .c-title-anchor .c-title[data-v-2083cb72] {
  1991. font-size: 2rem;
  1992. }
  1993. /* line 68, ../sass/distribution/_index.scss */
  1994. .distribution-index #calendar .c-day-background {
  1995. padding: 16px;
  1996. }
  1997. /* line 76, ../sass/distribution/_index.scss */
  1998. .distribution-index #calendar .c-day-popover-content {
  1999. font-size: 1.3rem;
  2000. }
  2001. /* line 80, ../sass/distribution/_index.scss */
  2002. .distribution-index #calendar .c-title {
  2003. text-transform: uppercase;
  2004. font-family: 'capsuularegular';
  2005. }
  2006. /* line 87, ../sass/distribution/_index.scss */
  2007. .distribution-index #products td.quantities {
  2008. width: 100px;
  2009. text-align: right;
  2010. }
  2011. /* line 92, ../sass/distribution/_index.scss */
  2012. .distribution-index #products input.quantity-max {
  2013. width: 50px;
  2014. text-align: center;
  2015. display: inline;
  2016. }
  2017. /* line 100, ../sass/distribution/_index.scss */
  2018. .distribution-index #infos-top .col-md-4 {
  2019. padding: 0px;
  2020. }
  2021. /* line 106, ../sass/distribution/_index.scss */
  2022. .distribution-index #infos-top .info-box {
  2023. min-height: 96px;
  2024. height: 96px;
  2025. }
  2026. /* line 110, ../sass/distribution/_index.scss */
  2027. .distribution-index #infos-top .info-box .info-box-icon {
  2028. height: 96px;
  2029. width: 50px;
  2030. line-height: 96px;
  2031. }
  2032. /* line 115, ../sass/distribution/_index.scss */
  2033. .distribution-index #infos-top .info-box .info-box-icon i.fa {
  2034. font-size: 30px;
  2035. }
  2036. /* line 120, ../sass/distribution/_index.scss */
  2037. .distribution-index #infos-top .info-box .info-box-content {
  2038. margin-left: 55px;
  2039. }
  2040. /* line 123, ../sass/distribution/_index.scss */
  2041. .distribution-index #infos-top .info-box .info-box-content .info-box-text {
  2042. font-size: 12px;
  2043. }
  2044. /* line 126, ../sass/distribution/_index.scss */
  2045. .distribution-index #infos-top .info-box .info-box-content .info-box-text .btn {
  2046. font-size: 12px;
  2047. text-transform: uppercase;
  2048. }
  2049. /* line 132, ../sass/distribution/_index.scss */
  2050. .distribution-index #infos-top .info-box .info-box-content .info-box-number {
  2051. font-size: 14px;
  2052. }
  2053. /* line 139, ../sass/distribution/_index.scss */
  2054. .distribution-index #infos-top #info-box-distribution .btn-active-week {
  2055. float: right;
  2056. }
  2057. /* line 145, ../sass/distribution/_index.scss */
  2058. .distribution-index #infos-top #summary-ca-weight .normal {
  2059. font-weight: normal;
  2060. }
  2061. /* line 155, ../sass/distribution/_index.scss */
  2062. .distribution-index #modal-products table.table thead tr td {
  2063. font-weight: bold;
  2064. }
  2065. /* line 161, ../sass/distribution/_index.scss */
  2066. .distribution-index #modal-products table.table td.quantity-ordered,
  2067. .distribution-index #modal-products table.table td.quantity-max {
  2068. text-align: center;
  2069. }
  2070. /* line 166, ../sass/distribution/_index.scss */
  2071. .distribution-index #modal-products table.table td.quantity-ordered {
  2072. width: 50px;
  2073. }
  2074. /* line 170, ../sass/distribution/_index.scss */
  2075. .distribution-index #modal-products table.table td.quantity-max {
  2076. width: 120px;
  2077. }
  2078. /* line 173, ../sass/distribution/_index.scss */
  2079. .distribution-index #modal-products table.table td.quantity-max input {
  2080. text-align: center;
  2081. min-width: 50px;
  2082. }
  2083. /* line 181, ../sass/distribution/_index.scss */
  2084. .distribution-index #orders {
  2085. position: relative;
  2086. }
  2087. /* line 186, ../sass/distribution/_index.scss */
  2088. .distribution-index #orders .panel-heading .buttons .btn {
  2089. position: relative;
  2090. top: -19px;
  2091. float: right;
  2092. margin-left: 10px;
  2093. }
  2094. /* line 195, ../sass/distribution/_index.scss */
  2095. .distribution-index #orders #wrapper-nav-points-sale {
  2096. margin-bottom: 10px;
  2097. }
  2098. /* line 198, ../sass/distribution/_index.scss */
  2099. .distribution-index #orders #wrapper-nav-points-sale ul#nav-points-sale {
  2100. margin: 0px;
  2101. padding: 0px;
  2102. list-style-type: none;
  2103. }
  2104. /* line 203, ../sass/distribution/_index.scss */
  2105. .distribution-index #orders #wrapper-nav-points-sale ul#nav-points-sale li {
  2106. float: left;
  2107. margin-right: 10px;
  2108. margin-bottom: 10px;
  2109. }
  2110. /* line 209, ../sass/distribution/_index.scss */
  2111. .distribution-index #orders #wrapper-nav-points-sale ul#nav-points-sale li a .label {
  2112. background-color: white;
  2113. border: solid 1px #e0e0e0;
  2114. -moz-border-radius: 10px;
  2115. -webkit-border-radius: 10px;
  2116. border-radius: 10px;
  2117. }
  2118. /* line 220, ../sass/distribution/_index.scss */
  2119. .distribution-index #orders #buttons-top-orders {
  2120. background-color: #F5F5F5;
  2121. padding: 10px 20px;
  2122. border: solid 1px #e0e0e0;
  2123. -moz-border-radius: 5px;
  2124. -webkit-border-radius: 5px;
  2125. border-radius: 5px;
  2126. margin-bottom: 20px;
  2127. }
  2128. /* line 231, ../sass/distribution/_index.scss */
  2129. .distribution-index #orders #buttons-top-orders .right {
  2130. float: right;
  2131. }
  2132. /* line 235, ../sass/distribution/_index.scss */
  2133. .distribution-index #orders #buttons-top-orders .dropdown {
  2134. display: inline-block;
  2135. }
  2136. /* line 240, ../sass/distribution/_index.scss */
  2137. .distribution-index #orders .point-sale-totals {
  2138. background-color: white;
  2139. padding: 10px 20px;
  2140. border: solid 1px #e0e0e0;
  2141. -moz-border-radius: 5px;
  2142. -webkit-border-radius: 5px;
  2143. border-radius: 5px;
  2144. margin-bottom: 20px;
  2145. }
  2146. /* line 247, ../sass/distribution/_index.scss */
  2147. .distribution-index #orders .point-sale-totals .title {
  2148. color: gray;
  2149. font-size: 13px;
  2150. margin-right: 13px;
  2151. text-transform: uppercase;
  2152. }
  2153. /* line 257, ../sass/distribution/_index.scss */
  2154. .distribution-index #orders table td.column-user {
  2155. position: relative;
  2156. }
  2157. /* line 260, ../sass/distribution/_index.scss */
  2158. .distribution-index #orders table td.column-user:hover .shortcuts {
  2159. display: block;
  2160. }
  2161. /* line 264, ../sass/distribution/_index.scss */
  2162. .distribution-index #orders table td.column-user .shortcuts {
  2163. display: none;
  2164. float: right;
  2165. position: absolute;
  2166. top: 1px;
  2167. right: 1px;
  2168. }
  2169. /* line 273, ../sass/distribution/_index.scss */
  2170. .distribution-index #orders table td.tiller {
  2171. width: 60px;
  2172. }
  2173. /* line 276, ../sass/distribution/_index.scss */
  2174. .distribution-index #orders table td.tiller label {
  2175. font-size: 12px;
  2176. cursor: pointer;
  2177. position: relative;
  2178. top: -2px;
  2179. font-weight: normal;
  2180. }
  2181. /* line 285, ../sass/distribution/_index.scss */
  2182. .distribution-index #orders table td.column-actions {
  2183. position: relative;
  2184. text-align: right;
  2185. }
  2186. /* line 289, ../sass/distribution/_index.scss */
  2187. .distribution-index #orders table td.column-actions .dropdown-menu {
  2188. top: 0px;
  2189. right: 0px;
  2190. }
  2191. /* line 294, ../sass/distribution/_index.scss */
  2192. .distribution-index #orders table td.column-actions .modal-form-order,
  2193. .distribution-index #orders table td.column-actions .modal-payment {
  2194. text-align: left;
  2195. }
  2196. /* line 299, ../sass/distribution/_index.scss */
  2197. .distribution-index #orders table td.column-actions .add-subscription {
  2198. position: relative;
  2199. }
  2200. /* line 302, ../sass/distribution/_index.scss */
  2201. .distribution-index #orders table td.column-actions .add-subscription .glyphicon-plus {
  2202. position: absolute;
  2203. top: 4px;
  2204. right: 4px;
  2205. font-size: 7px;
  2206. }
  2207. /* line 311, ../sass/distribution/_index.scss */
  2208. .distribution-index #orders table td.column-state-payment {
  2209. width: 120px;
  2210. }
  2211. /* line 315, ../sass/distribution/_index.scss */
  2212. .distribution-index #orders table .state-payment-mobile {
  2213. display: none;
  2214. }
  2215. /* line 320, ../sass/distribution/_index.scss */
  2216. .distribution-index #orders table td.column-payment div.btn-group {
  2217. width: 125px;
  2218. }
  2219. /* line 326, ../sass/distribution/_index.scss */
  2220. .distribution-index #orders table tr.view ul {
  2221. list-style-type: none;
  2222. margin-left: 0px;
  2223. padding-left: 15px;
  2224. }
  2225. /* line 336, ../sass/distribution/_index.scss */
  2226. .distribution-index #orders table tr.view .comment {
  2227. margin-top: 20px;
  2228. }
  2229. /* line 340, ../sass/distribution/_index.scss */
  2230. .distribution-index #orders table tr.view .delivery {
  2231. margin-top: 20px;
  2232. }
  2233. /* line 349, ../sass/distribution/_index.scss */
  2234. .distribution-index .modal-form-order .modal-container {
  2235. width: 100%;
  2236. padding: 0px;
  2237. }
  2238. /* line 353, ../sass/distribution/_index.scss */
  2239. .distribution-index .modal-form-order .modal-container .modal-body {
  2240. padding-right: 15px;
  2241. }
  2242. /* line 356, ../sass/distribution/_index.scss */
  2243. .distribution-index .modal-form-order .modal-container .modal-body table {
  2244. margin-bottom: 150px;
  2245. }
  2246. /* line 361, ../sass/distribution/_index.scss */
  2247. .distribution-index .modal-form-order .modal-container .modal-footer {
  2248. border-top-color: #f4f4f4;
  2249. position: fixed;
  2250. bottom: 0;
  2251. right: 0;
  2252. z-index: 99999;
  2253. background-color: white;
  2254. width: 100%;
  2255. text-align: center;
  2256. border-top: solid 1px #e0e0e0;
  2257. }
  2258. /* line 373, ../sass/distribution/_index.scss */
  2259. .distribution-index .modal-form-order .modal-container .modal-footer .actions-form button {
  2260. float: none;
  2261. }
  2262. /* line 377, ../sass/distribution/_index.scss */
  2263. .distribution-index .modal-form-order .modal-container .modal-footer .actions-form div.right {
  2264. float: right;
  2265. }
  2266. /* line 384, ../sass/distribution/_index.scss */
  2267. .distribution-index .modal-form-order .btn-credit {
  2268. float: right;
  2269. }
  2270. /* line 390, ../sass/distribution/_index.scss */
  2271. .distribution-index .modal-form-order table.table-products .product-ordered td {
  2272. background-color: #e9e9e9;
  2273. }
  2274. /* line 394, ../sass/distribution/_index.scss */
  2275. .distribution-index .modal-form-order table.table-products .product-ordered input.input-quantity {
  2276. font-size: 16px;
  2277. font-weight: bold;
  2278. }
  2279. /* line 400, ../sass/distribution/_index.scss */
  2280. .distribution-index .modal-form-order table.table-products td.price {
  2281. width: 150px;
  2282. }
  2283. /* line 403, ../sass/distribution/_index.scss */
  2284. .distribution-index .modal-form-order table.table-products td.price input {
  2285. text-align: center;
  2286. }
  2287. /* line 407, ../sass/distribution/_index.scss */
  2288. .distribution-index .modal-form-order table.table-products td.price .input-group-addon {
  2289. background-color: #eee;
  2290. }
  2291. /* line 411, ../sass/distribution/_index.scss */
  2292. .distribution-index .modal-form-order table.table-products td.price .invoice-price {
  2293. margin-top: 8px;
  2294. }
  2295. /* line 413, ../sass/distribution/_index.scss */
  2296. .distribution-index .modal-form-order table.table-products td.price .invoice-price .label-invoice-price {
  2297. font-size: 11px;
  2298. font-weight: bold;
  2299. color: gray;
  2300. }
  2301. /* line 421, ../sass/distribution/_index.scss */
  2302. .distribution-index .modal-form-order table.table-products td.quantity {
  2303. width: 165px;
  2304. }
  2305. /* line 424, ../sass/distribution/_index.scss */
  2306. .distribution-index .modal-form-order table.table-products td.quantity input {
  2307. text-align: center;
  2308. color: black;
  2309. }
  2310. /* line 429, ../sass/distribution/_index.scss */
  2311. .distribution-index .modal-form-order table.table-products td.quantity .form-control {
  2312. border-right: 0px none;
  2313. padding-right: 4px;
  2314. }
  2315. /* line 434, ../sass/distribution/_index.scss */
  2316. .distribution-index .modal-form-order table.table-products td.quantity .input-group-addon {
  2317. padding: 5px;
  2318. padding-left: 0px;
  2319. margin: 0px;
  2320. border-left: 0px none;
  2321. border-right: 0px none;
  2322. }
  2323. /* line 443, ../sass/distribution/_index.scss */
  2324. .distribution-index .modal-form-order table.table-products td.quantity-remaining {
  2325. text-align: right;
  2326. }
  2327. /* line 446, ../sass/distribution/_index.scss */
  2328. .distribution-index .modal-form-order table.table-products td.quantity-remaining.quantity-remaining, .distribution-index .modal-form-order table.table-products td.quantity-remaining.infinite {
  2329. color: #00A65A;
  2330. }
  2331. /* line 450, ../sass/distribution/_index.scss */
  2332. .distribution-index .modal-form-order table.table-products td.quantity-remaining.negative {
  2333. color: #DD4B39;
  2334. }
  2335. /* line 454, ../sass/distribution/_index.scss */
  2336. .distribution-index .modal-form-order table.table-products td.quantity-remaining.infinite, .distribution-index .modal-form-order table.table-products td.quantity-remaining.empty {
  2337. font-size: 18px;
  2338. }
  2339. /* line 461, ../sass/distribution/_index.scss */
  2340. .distribution-index .modal-form-order .actions-form button {
  2341. margin-left: 15px;
  2342. }
  2343. /* line 469, ../sass/distribution/_index.scss */
  2344. .distribution-index .modal-payment .info-box .info-box-icon {
  2345. width: 50px;
  2346. }
  2347. /* line 472, ../sass/distribution/_index.scss */
  2348. .distribution-index .modal-payment .info-box .info-box-icon i {
  2349. font-size: 30px;
  2350. }
  2351. /* line 477, ../sass/distribution/_index.scss */
  2352. .distribution-index .modal-payment .info-box .info-box-content {
  2353. margin-left: 50px;
  2354. }
  2355. /* line 3, ../sass/user/_emails.scss */
  2356. .user-mail #tabs-points-sale {
  2357. margin-bottom: 20px;
  2358. }
  2359. /* line 5, ../sass/user/_credit.scss */
  2360. .user-credit .panel .panel-heading .btn {
  2361. float: right;
  2362. }
  2363. /* line 6, ../sass/user/_form.scss */
  2364. .user-create #user-points_sale label,
  2365. .user-create #user-user_groups label,
  2366. .user-update #user-points_sale label,
  2367. .user-update #user-user_groups label {
  2368. font-weight: normal;
  2369. margin-right: 10px;
  2370. cursor: pointer;
  2371. background-color: white;
  2372. padding: 5px 10px;
  2373. border: solid 1px #e0e0e0;
  2374. }
  2375. /* line 14, ../sass/user/_form.scss */
  2376. .user-create #user-points_sale label .form-control,
  2377. .user-create #user-user_groups label .form-control,
  2378. .user-update #user-points_sale label .form-control,
  2379. .user-update #user-user_groups label .form-control {
  2380. display: inline;
  2381. width: 200px;
  2382. margin-left: 15px;
  2383. }
  2384. /* line 4, ../sass/producer/_update.scss */
  2385. .producer-update .panel h4 {
  2386. font-size: 23px;
  2387. margin-bottom: 20px;
  2388. text-transform: uppercase;
  2389. border-bottom: solid 1px gray;
  2390. }
  2391. /* line 10, ../sass/producer/_update.scss */
  2392. .producer-update .panel h4:not(:first-child) {
  2393. margin-top: 45px;
  2394. }
  2395. /* line 4, ../sass/point_sale/_index.scss */
  2396. .point-sale-index table .td-default {
  2397. text-align: center;
  2398. }
  2399. /**
  2400. Copyright distrib (2018)
  2401. contact@opendistrib.net
  2402. Ce logiciel est un programme informatique servant à aider les producteurs
  2403. à distribuer leur production en circuits courts.
  2404. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  2405. respectant les principes de diffusion des logiciels libres. Vous pouvez
  2406. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  2407. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  2408. sur le site "http://www.cecill.info".
  2409. En contrepartie de l'accessibilité au code source et des droits de copie,
  2410. de modification et de redistribution accordés par cette licence, il n'est
  2411. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  2412. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  2413. titulaire des droits patrimoniaux et les concédants successifs.
  2414. A cet égard l'attention de l'utilisateur est attirée sur les risques
  2415. associés au chargement, à l'utilisation, à la modification et/ou au
  2416. développement et à la reproduction du logiciel par l'utilisateur étant
  2417. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  2418. manipuler et qui le réserve donc à des développeurs et des professionnels
  2419. avertis possédant des connaissances informatiques approfondies. Les
  2420. utilisateurs sont donc invités à charger et tester l'adéquation du
  2421. logiciel à leurs besoins dans des conditions permettant d'assurer la
  2422. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  2423. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  2424. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  2425. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  2426. termes.
  2427. */
  2428. /* line 39, ../sass/report/_index.scss */
  2429. .report-index #wrapper-app-report-index {
  2430. display: none;
  2431. }
  2432. /* line 41, ../sass/report/_index.scss */
  2433. .report-index #wrapper-app-report-index.loaded {
  2434. display: block;
  2435. }
  2436. /* line 48, ../sass/report/_index.scss */
  2437. .report-index #parameters #nav-sections-report .btn-section {
  2438. margin-right: 5px;
  2439. }
  2440. /* line 53, ../sass/report/_index.scss */
  2441. .report-index #parameters .section {
  2442. margin-top: 10px;
  2443. }
  2444. /* line 55, ../sass/report/_index.scss */
  2445. .report-index #parameters .section .content-max-height {
  2446. max-height: 400px;
  2447. overflow-y: scroll;
  2448. }
  2449. /* line 59, ../sass/report/_index.scss */
  2450. .report-index #parameters .section .content-max-height ul {
  2451. list-style-type: none;
  2452. margin-left: 0px;
  2453. padding-left: 5px;
  2454. }
  2455. /* line 65, ../sass/report/_index.scss */
  2456. .report-index #parameters .section .content-max-height ul li input {
  2457. position: relative;
  2458. top: 2px;
  2459. }
  2460. /* line 69, ../sass/report/_index.scss */
  2461. .report-index #parameters .section .content-max-height ul li label {
  2462. font-weight: normal;
  2463. margin-bottom: 0px;
  2464. }
  2465. /* line 78, ../sass/report/_index.scss */
  2466. .report-index #parameters #section-users #wrapper-search-user {
  2467. margin-bottom: 10px;
  2468. position: relative;
  2469. }
  2470. /* line 81, ../sass/report/_index.scss */
  2471. .report-index #parameters #section-users #wrapper-search-user .glyphicon-search {
  2472. position: absolute;
  2473. top: 10px;
  2474. right: 16px;
  2475. color: gray;
  2476. }
  2477. /* line 93, ../sass/report/_index.scss */
  2478. .report-index #parameters #section-distributions #wrapper-select-year {
  2479. margin-bottom: 10px;
  2480. }
  2481. /* line 97, ../sass/report/_index.scss */
  2482. .report-index #parameters #section-distributions .distribution-month {
  2483. margin-bottom: 10px;
  2484. }
  2485. /* line 99, ../sass/report/_index.scss */
  2486. .report-index #parameters #section-distributions .distribution-month .link-month-distribution {
  2487. display: block;
  2488. text-transform: capitalize;
  2489. text-align: left;
  2490. }
  2491. /* line 104, ../sass/report/_index.scss */
  2492. .report-index #parameters #section-distributions .distribution-month .link-month-distribution .glyphicon {
  2493. float: right;
  2494. }
  2495. /* line 109, ../sass/report/_index.scss */
  2496. .report-index #parameters #section-distributions .distribution-month .the-distributions {
  2497. margin-top: 8px;
  2498. }
  2499. /* line 121, ../sass/report/_index.scss */
  2500. .report-index #report .section {
  2501. margin-bottom: 15px;
  2502. }
  2503. /* line 124, ../sass/report/_index.scss */
  2504. .report-index #report .section h3 {
  2505. margin: 0px;
  2506. padding: 0px;
  2507. font-size: 16px;
  2508. text-transform: uppercase;
  2509. }
  2510. /* line 130, ../sass/report/_index.scss */
  2511. .report-index #report .section .comma:last-child {
  2512. display: none;
  2513. }
  2514. /* line 4, ../sass/document/_form.scss */
  2515. .document-form .info-box .info-box-text {
  2516. font-size: 13px;
  2517. }
  2518. /* line 7, ../sass/document/_form.scss */
  2519. .document-form .info-box .info-box-number {
  2520. font-size: 15px;
  2521. }
  2522. /* line 12, ../sass/document/_form.scss */
  2523. .document-form #block-add-product .input-price {
  2524. text-align: center;
  2525. }
  2526. /* line 16, ../sass/document/_form.scss */
  2527. .document-form #block-add-product .input-group-quantity .input-quantity {
  2528. text-align: center;
  2529. }
  2530. /* line 22, ../sass/document/_form.scss */
  2531. .document-form #block-add-product .total .input-group {
  2532. margin-bottom: 10px;
  2533. }
  2534. /* line 25, ../sass/document/_form.scss */
  2535. .document-form #block-add-product .total .btn {
  2536. float: right;
  2537. }
  2538. /* line 32, ../sass/document/_form.scss */
  2539. .document-form #block-list-products ul.product-order-meta {
  2540. padding: 0px;
  2541. margin: 0px;
  2542. padding-left: 20px;
  2543. }
  2544. /* line 37, ../sass/document/_form.scss */
  2545. .document-form #block-list-products ul.product-order-meta li {
  2546. color: gray;
  2547. font-size: 11px;
  2548. }
  2549. /* line 7, ../sass/document/_index.scss */
  2550. .quotation-index .content-wrapper .content table.table .column-actions,
  2551. .delivery-note-index .content-wrapper .content table.table .column-actions,
  2552. .invoice-index .content-wrapper .content table.table .column-actions {
  2553. width: 200px;
  2554. }
  2555. /* line 6, ../sass/development/_index.scss */
  2556. .development-index #versions-list .panel .block {
  2557. margin-bottom: 15px;
  2558. }
  2559. /* line 9, ../sass/development/_index.scss */
  2560. .development-index #versions-list .panel .block .glyphicon {
  2561. font-size: 15px;
  2562. margin-right: 3px;
  2563. }
  2564. /* line 14, ../sass/development/_index.scss */
  2565. .development-index #versions-list .panel .block h4 {
  2566. font-size: 16px;
  2567. border-bottom: solid 1px #e0e0e0;
  2568. padding-bottom: 4px;
  2569. }
  2570. /* line 21, ../sass/development/_index.scss */
  2571. .development-index #versions-list .panel .block.block-release-date ul {
  2572. padding: 0px;
  2573. list-style-type: none;
  2574. }
  2575. /* line 29, ../sass/development/_index.scss */
  2576. .development-index #versions-list .panel .block.block-features ul, .development-index #versions-list .panel .block.block-maintenance ul {
  2577. list-style-type: circle;
  2578. padding: 0px;
  2579. padding-left: 15px;
  2580. }
  2581. /* line 35, ../sass/development/_index.scss */
  2582. .development-index #versions-list .panel .block.block-features ul li.admin, .development-index #versions-list .panel .block.block-maintenance ul li.admin {
  2583. color: gray;
  2584. }
  2585. /* line 46, ../sass/development/_index.scss */
  2586. .development-index #panel-participate ul.contacts {
  2587. padding: 0px;
  2588. padding-left: 10px;
  2589. margin: 0px;
  2590. list-style-type: none;
  2591. }
  2592. /* line 52, ../sass/development/_index.scss */
  2593. .development-index #panel-participate ul.contacts li {
  2594. padding-bottom: 10px;
  2595. }
  2596. /* line 55, ../sass/development/_index.scss */
  2597. .development-index #panel-participate ul.contacts li .glyphicon {
  2598. float: left;
  2599. }
  2600. /* line 59, ../sass/development/_index.scss */
  2601. .development-index #panel-participate ul.contacts li p {
  2602. padding-left: 25px;
  2603. }
  2604. /* line 6, ../sass/support/_index.scss */
  2605. .support-index .ticket-list .nav-tabs .label {
  2606. position: relative;
  2607. top: -2px;
  2608. left: 2px;
  2609. padding: 0.3em 0.6em 0.2em 0.6em;
  2610. }
  2611. /* line 15, ../sass/support/_index.scss */
  2612. .support-index .ticket-list .table .filters {
  2613. display: none;
  2614. }
  2615. /* line 19, ../sass/support/_index.scss */
  2616. .support-index .ticket-list .table .td-created-at,
  2617. .support-index .ticket-list .table .td-last-message,
  2618. .support-index .ticket-list .table .td-messages {
  2619. width: 100px;
  2620. }
  2621. /* line 24, ../sass/support/_index.scss */
  2622. .support-index .ticket-list .table .td-producer {
  2623. width: 200px;
  2624. }
  2625. /* line 5, ../sass/support/_view.scss */
  2626. .ticket-view .table tr:first-child td {
  2627. border-top: 0px none;
  2628. }
  2629. /* line 11, ../sass/support/_view.scss */
  2630. .ticket-view .timeline::before {
  2631. background: transparent none;
  2632. }
  2633. /* line 15, ../sass/support/_view.scss */
  2634. .ticket-view .timeline li, .ticket-view .timeline .timeline-item {
  2635. margin-right: 0px;
  2636. }
  2637. /**
  2638. Copyright distrib (2018)
  2639. contact@opendistrib.net
  2640. Ce logiciel est un programme informatique servant à aider les producteurs
  2641. à distribuer leur production en circuits courts.
  2642. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  2643. respectant les principes de diffusion des logiciels libres. Vous pouvez
  2644. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  2645. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  2646. sur le site "http://www.cecill.info".
  2647. En contrepartie de l'accessibilité au code source et des droits de copie,
  2648. de modification et de redistribution accordés par cette licence, il n'est
  2649. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  2650. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  2651. titulaire des droits patrimoniaux et les concédants successifs.
  2652. A cet égard l'attention de l'utilisateur est attirée sur les risques
  2653. associés au chargement, à l'utilisation, à la modification et/ou au
  2654. développement et à la reproduction du logiciel par l'utilisateur étant
  2655. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  2656. manipuler et qui le réserve donc à des développeurs et des professionnels
  2657. avertis possédant des connaissances informatiques approfondies. Les
  2658. utilisateurs sont donc invités à charger et tester l'adéquation du
  2659. logiciel à leurs besoins dans des conditions permettant d'assurer la
  2660. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  2661. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  2662. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  2663. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  2664. termes.
  2665. */
  2666. @media screen and (max-width: 768px) {
  2667. /* line 42, ../sass/_responsive.scss */
  2668. .wrapper .main-header .logo {
  2669. color: #333 !important;
  2670. }
  2671. /* line 46, ../sass/_responsive.scss */
  2672. .wrapper .main-header .navbar {
  2673. border-top: solid 1px #e0e0e0;
  2674. border-bottom: solid 1px #e0e0e0;
  2675. }
  2676. /* line 50, ../sass/_responsive.scss */
  2677. .wrapper .main-header .navbar .producer-panel {
  2678. display: none;
  2679. }
  2680. /* line 58, ../sass/_responsive.scss */
  2681. .navbar-custom-menu .producer-menu span {
  2682. display: none;
  2683. }
  2684. /* line 65, ../sass/_responsive.scss */
  2685. .table .column-hide-on-mobile {
  2686. display: none;
  2687. }
  2688. /* line 76, ../sass/_responsive.scss */
  2689. .distribution-index .modal-form-order .modal-container .modal-body table.table-products td.quantity .form-control {
  2690. width: 50px;
  2691. height: 52px;
  2692. }
  2693. /* line 82, ../sass/_responsive.scss */
  2694. .distribution-index .modal-form-order .modal-container .modal-body table.table-products td.price {
  2695. display: none;
  2696. }
  2697. /* line 90, ../sass/_responsive.scss */
  2698. .distribution-index .modal-form-order .modal-container .modal-footer .actions-form div.right {
  2699. display: none;
  2700. }
  2701. /* line 101, ../sass/_responsive.scss */
  2702. .distribution-index #orders #buttons-top-orders .left {
  2703. width: 100%;
  2704. float: none;
  2705. }
  2706. /* line 106, ../sass/_responsive.scss */
  2707. .distribution-index #orders #buttons-top-orders .right {
  2708. width: 100%;
  2709. float: none;
  2710. }
  2711. /* line 111, ../sass/_responsive.scss */
  2712. .distribution-index #orders #buttons-top-orders .btn {
  2713. padding: 8px 15px;
  2714. margin: 10px;
  2715. display: block;
  2716. width: 100%;
  2717. }
  2718. /* line 121, ../sass/_responsive.scss */
  2719. .distribution-index #orders #wrapper-nav-points-sale ul#nav-points-sale li {
  2720. float: none;
  2721. width: 100%;
  2722. }
  2723. /* line 125, ../sass/_responsive.scss */
  2724. .distribution-index #orders #wrapper-nav-points-sale ul#nav-points-sale li a {
  2725. display: block;
  2726. }
  2727. /* line 134, ../sass/_responsive.scss */
  2728. .distribution-index #orders table .state-payment-mobile {
  2729. display: block;
  2730. }
  2731. /* line 137, ../sass/_responsive.scss */
  2732. .distribution-index #orders table .state-payment-mobile .glyphicon-time {
  2733. display: none;
  2734. }
  2735. /* line 143, ../sass/_responsive.scss */
  2736. .distribution-index #orders table ul.dropdown-menu a {
  2737. padding: 15px;
  2738. }
  2739. /* line 148, ../sass/_responsive.scss */
  2740. .distribution-index #orders table button.dropdown-toggle,
  2741. .distribution-index #orders table button.btn-moins,
  2742. .distribution-index #orders table button.btn-plus {
  2743. padding: 15px;
  2744. }
  2745. /* line 155, ../sass/_responsive.scss */
  2746. .distribution-index #orders table .column-origin,
  2747. .distribution-index #orders table .column-point-sale,
  2748. .distribution-index #orders table .column-state-payment,
  2749. .distribution-index #orders table .column-payment,
  2750. .distribution-index #orders table .column-tiller,
  2751. .distribution-index #orders table .column-delivery-note {
  2752. display: none;
  2753. }
  2754. }