app.scss 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  1. // @Author: Bachir Soussi Chiadmi <bach>
  2. // @Date: 18-12-2017
  3. // @Email: bachir@figureslibres.io
  4. // @Filename: app.scss
  5. // @Last modified by: bach
  6. // @Last modified time: 20-12-2017
  7. // @License: GPL-V3
  8. @import 'base/reset';
  9. @import 'base/colors';
  10. @import 'base/grid';
  11. @import 'base/layout';
  12. @import 'base/fonts';
  13. @mixin spining-loader-square{
  14. @keyframes rotation {
  15. from {transform: rotate(0deg);}
  16. to {transform: rotate(359deg);}
  17. }
  18. animation: rotation 2s infinite linear;
  19. }
  20. @mixin entree-micro-square {
  21. white-space: nowrap;
  22. font-size: 0.5em;
  23. line-height: 0;
  24. letter-spacing: 0px;
  25. span{
  26. display:inline-block;
  27. $s:6px;
  28. width:$s; height:$s;
  29. background-color: black;
  30. margin-right: 2px;
  31. &[tid='134']{background-color: var(--e-col-134);}
  32. &[tid='121']{background-color: var(--e-col-121);}
  33. &[tid='125']{background-color: var(--e-col-125);}
  34. &[tid='119']{background-color: var(--e-col-119);}
  35. &[tid='132']{background-color: var(--e-col-132);}
  36. &[tid='122']{background-color: var(--e-col-122);}
  37. &[tid='129']{background-color: var(--e-col-129);}
  38. &[tid='120']{background-color: var(--e-col-120);}
  39. &[tid='130']{background-color: var(--e-col-130);}
  40. &[tid='118']{background-color: var(--e-col-118);}
  41. &[tid='127']{background-color: var(--e-col-127);}
  42. &[tid='133']{background-color: var(--e-col-133);}
  43. &[tid='128']{background-color: var(--e-col-128);}
  44. &[tid='124']{background-color: var(--e-col-124);}
  45. &[tid='116']{background-color: var(--e-col-116);}
  46. &[tid='117']{background-color: var(--e-col-117);}
  47. &[tid='131']{background-color: var(--e-col-131);}
  48. &[tid='126']{background-color: var(--e-col-126);}
  49. &[tid='123']{background-color: var(--e-col-123);}
  50. }
  51. }
  52. @mixin btn {
  53. padding: 3px;
  54. background-color: white;
  55. border-radius: 3px;
  56. }
  57. // .layout-container{
  58. // pointer-events: none;
  59. // }
  60. // _ _
  61. // | |_ ___ __ _ __| |___ _ _
  62. // | ' \/ -_) _` / _` / -_) '_|
  63. // |_||_\___\__,_\__,_\___|_|
  64. header[role="banner"]{
  65. pointer-events: all;
  66. // TODO: what header height to fit well with player ??
  67. }
  68. #block-edlptheme-branding{
  69. display: inline-block;
  70. h1{
  71. margin:0; display: inline-block;
  72. a.site-name{
  73. display: block;
  74. $w:260px;
  75. width:$w; height:$w * 0.22;
  76. margin-top: 0.15em;
  77. background-image: url(../img/logo.svg);
  78. // background-color: white;
  79. background-repeat:no-repeat;
  80. background-size: contain;
  81. white-space: nowrap;
  82. text-indent: 500px;
  83. overflow: hidden;
  84. html.is-mobile &{
  85. $w:170px;
  86. width:$w; height:$w * 0.22;
  87. }
  88. }
  89. }
  90. opacity: 1;
  91. transition: opacity 0.7s ease-in-out;
  92. .audio-player-visible &{
  93. opacity: 0;
  94. }
  95. }
  96. #block-mainnavigation{
  97. float:right;
  98. margin-top: 25px;
  99. z-index: 21;
  100. position: relative;
  101. ul{
  102. margin:0; padding: 0;
  103. white-space: nowrap;
  104. li{
  105. margin:0; padding:0;
  106. display: inline-block;
  107. a{
  108. font-size: 0.756em;
  109. color:inherit;
  110. text-decoration: none;
  111. text-transform: uppercase;
  112. margin-left: 1em;
  113. @include btn;
  114. &:before{
  115. content: "";
  116. display:inline-block;
  117. $sq:0.6em;
  118. width: $sq; height:$sq;
  119. border: 1px solid red;
  120. margin-right: 0.3em;
  121. }
  122. &.ajax-loading:before{
  123. @include spining-loader-square;
  124. }
  125. &.is-active:before,
  126. &.is-active-trail:before,
  127. &:hover:before{
  128. // border-color: red;
  129. background-color: red;
  130. }
  131. }
  132. }
  133. }
  134. @media only screen and (max-width: 1270px) {
  135. margin-top: 15px;
  136. ul{
  137. li{
  138. display: block;
  139. a{
  140. @include content_petit;
  141. }
  142. }
  143. li:first-of-type{
  144. display:none;
  145. }
  146. }
  147. }
  148. html.is-mobile &{
  149. // outline: 1px solid orange;
  150. margin-top:4px;
  151. li{
  152. a{
  153. font-size: 0.680em;
  154. padding:0; margin:0;
  155. }
  156. }
  157. }
  158. }
  159. .block-language{
  160. float: right;
  161. margin-top: 24px;
  162. margin-left: 2em;
  163. ul{
  164. margin:0; padding:0;
  165. li{
  166. display: inline-block; vertical-align: middle;
  167. list-style: none;
  168. a{
  169. font-size: 0.690em;
  170. color:inherit;
  171. text-decoration: none;
  172. text-transform: capitalize;
  173. margin-left: 0.8em;
  174. @include btn;
  175. &:before{
  176. content: "";
  177. display:inline-block;
  178. $sq:0.6em;
  179. width: $sq; height:$sq;
  180. border: 1px solid red;
  181. margin-right: 0.3em;
  182. }
  183. }
  184. &.is-active,
  185. &:hover{
  186. a:before{
  187. border-color: red;
  188. background-color: red;
  189. }
  190. }
  191. }
  192. }
  193. @media only screen and (max-width: 1270px) {
  194. margin-top: 15px;
  195. margin-left: 0.5em;
  196. border-left: 1px solid red;
  197. ul{
  198. li{
  199. display: block;
  200. a{
  201. @include content_petit;
  202. }
  203. }
  204. }
  205. }
  206. }
  207. // ___
  208. // / __|__ _ _ ___ ____ _ ___
  209. // | (__/ _` | ' \ V / _` (_-<
  210. // \___\__,_|_||_\_/\__,_/__/
  211. #corpus-map{
  212. opacity: 0;
  213. body[corpus="map-ready"] &{
  214. transition: opacity 2s ease-out;
  215. opacity: 1;
  216. }
  217. }
  218. // _
  219. // _ __ __ _(_)_ _
  220. // | ' \/ _` | | ' \
  221. // |_|_|_\__,_|_|_||_|
  222. // booting sequence
  223. // and ajax loading effects
  224. main[role="main"]{
  225. .row{
  226. opacity: 0;
  227. .col{
  228. opacity:1;
  229. transition: opacity 0.5s ease-in-out;
  230. }
  231. }
  232. body[booted="booted"] &{
  233. .row{
  234. transition: opacity 1s ease-out;
  235. opacity:1;
  236. }
  237. }
  238. body.ajax-loading &{
  239. .row .col:not([theme="edlp_search_search_form"]){
  240. opacity:0.2;
  241. }
  242. // &:before{
  243. // content:"";
  244. // display: block;
  245. // position: absolute;
  246. // z-index: 10;
  247. // $s:60px;
  248. // width:$s; height:$s;
  249. // top:calc(50% - #{$s/2}); left:calc(50% - #{$s/2});
  250. // // padding:1em;
  251. // background-color: rgba(255,255,255, 0.5);
  252. // background-image: url(../img/edlp-loader-anim.svg);
  253. // background-size: 50%;
  254. // background-repeat: no-repeat;
  255. // background-position: center;
  256. // // border-radius: $s/2;
  257. // }
  258. }
  259. html.is-mobile &{
  260. *{pointer-events: all!important;}
  261. }
  262. }
  263. main[role="main"]{
  264. .layout-content{
  265. pointer-events: none;
  266. .row{
  267. pointer-events: none;
  268. height:100%;
  269. overflow: hidden;
  270. .col{
  271. pointer-events: none;
  272. height: 100%;
  273. position: relative;
  274. &>.wrapper{
  275. pointer-events:all;
  276. position: relative;
  277. box-sizing: border-box;
  278. border-top: 1px solid red;
  279. border-bottom: 1px solid red;
  280. background-color: $transparent-bg;
  281. padding:0 0 1em;
  282. max-height: 100%;
  283. overflow-y: auto;
  284. &>*{
  285. padding:0 1.5em;
  286. }
  287. // .os-scroll{
  288. // box-sizing: border-box;
  289. // max-height: 100%;
  290. // padding:0 1em;
  291. // }
  292. }
  293. }
  294. }
  295. }
  296. h3.sur-title{
  297. @include content_titles;
  298. margin:0.9em 0 0;
  299. }
  300. article.node:not(.node--type-enregistrement)>h2, h2.title{
  301. @include content_titles;
  302. }
  303. article.node.node--type-enregistrement{
  304. margin:0.5em 0;
  305. >h2{
  306. @include document_titles_teaser;
  307. }
  308. }
  309. article.node.node--type-enregistrement.node--view-mode-transcript,
  310. article.node.node--type-enregistrement.node--view-mode-article{
  311. >h2{
  312. // display: none;
  313. @include content_subtitles;
  314. margin:1em 0 0.9em 0;
  315. }
  316. h3.sur-title{
  317. display: none;
  318. }
  319. }
  320. article.node.node--type-enregistrement.node--view-mode-index{
  321. &{margin:0}
  322. h2.node-title{margin-top: 0.6em; line-height: 1;}
  323. p{margin:0.1em 0;}
  324. }
  325. article.node.node--type-enregistrement.node--view-mode-transcript{
  326. html.js &{
  327. h3.sur-title{display:none;}
  328. }
  329. .field--name-field-transcript-vo, .field--name-field-transcript-trad{
  330. .field__label{
  331. @include content_titles;
  332. html.js &{
  333. display: none;
  334. }
  335. }
  336. &:not(.visible){
  337. display:none;
  338. }
  339. }
  340. nav{
  341. padding:1em 0 0;
  342. div.field__label{
  343. @include content_titles;
  344. display: inline-block;
  345. cursor:pointer;
  346. margin-right: 1em;
  347. &:before{
  348. content: "";
  349. display:inline-block;
  350. $sq:7px;
  351. width: $sq; height:$sq;
  352. border: 1px solid red;
  353. margin-right: 0.5em;
  354. }
  355. &:hover:before,
  356. &.is-active:before{
  357. background-color: red;
  358. }
  359. }
  360. }
  361. }
  362. article.node--type-page.node--view-mode-default{
  363. >h2.node-title{
  364. @include content_big_titles;
  365. margin:0.3em 0;
  366. }
  367. .field--name-field-visuel{
  368. margin-bottom: 1em;
  369. }
  370. }
  371. .agenda{
  372. .past-events{
  373. border-top: 1px solid red;
  374. margin-top: 1em;
  375. }
  376. text-align: center;
  377. h3{
  378. @include content_titles;
  379. }
  380. article.node > h2.node-title{
  381. @include content_subtitles;
  382. margin-bottom: 0;
  383. }
  384. .field--name-field-date{
  385. time{
  386. @include content_courant;
  387. }
  388. }
  389. }
  390. article.node--type-evenement{
  391. .field--name-field-page-liee{
  392. @include content_subtitles;
  393. }
  394. .field--name-field-date{
  395. @include content_courant;
  396. }
  397. .field--name-title{
  398. @include content_courant;
  399. }
  400. // .field--name-body{}
  401. }
  402. article.node--type-evenement.node--view-mode-aside{
  403. .field--name-field-date{
  404. @include content_subtitles;
  405. }
  406. }
  407. div.taxonomy-term{
  408. padding-top:1em!important;
  409. &:not(.home_mobile)>h2{
  410. display:none;
  411. // @include content_subtitles;
  412. // margin: 1em 0 0.5em;
  413. }
  414. &.home_mobile h2{
  415. margin:0;
  416. @include content_titles;
  417. }
  418. >.content{
  419. }
  420. &:not(.home_mobile) .field__label{
  421. display:none;
  422. // @include content_titles;
  423. }
  424. .field--name-field-notice{
  425. .field__label{
  426. margin-bottom: 1em;
  427. }
  428. }
  429. &.home_mobile .field__label{
  430. margin: 0;
  431. @include content_subtitles;
  432. }
  433. article.node--type-enregistrement{
  434. h2.node-title{
  435. @include content_subtitles;
  436. margin:0.9em 0 0 0;
  437. }
  438. }
  439. }
  440. div.taxonomy-term.vocabulary-entrees.home_mobile{
  441. // &:not(:first-of-type){
  442. padding-bottom: 1em;
  443. border-bottom: 1px solid red;
  444. // }
  445. .field--name-field-notice, .index{
  446. >.field__label{
  447. cursor: pointer;
  448. }
  449. .field__item, .item-list{
  450. height: auto;
  451. transition: height 0.3s ease-in-out;
  452. }
  453. &.closed{
  454. .field__item, .item-list{
  455. overflow: hidden;
  456. height:1px;
  457. transition: height 0.01s ease-in-out;
  458. }
  459. }
  460. }
  461. &.notice-opened, &.index-opened{
  462. .field--name-description{
  463. overflow: hidden;
  464. height: 1px;
  465. }
  466. }
  467. }
  468. h4.inter-titre{
  469. @include content_courant;
  470. font-weight: normal;
  471. font-style: italic;
  472. margin:1.5em 0 0.5em 0;
  473. }
  474. article.node p, div.taxonomy-term p{
  475. @include content_courant;
  476. margin:0 0 1em 0;
  477. }
  478. .field.text-formatted{
  479. a{
  480. display: inline-block;
  481. position: relative;
  482. &:after{
  483. content:'';
  484. position: absolute;
  485. // z-index: -1;
  486. width:100%;
  487. left:0; bottom:0.2em;
  488. border-bottom: 1px dotted #1A1A1A;
  489. }
  490. &.audio-link{
  491. &:after{
  492. border-color: red;
  493. }
  494. }
  495. }
  496. }
  497. .productions-subtree{
  498. a{
  499. @include nav_link;
  500. &:before{
  501. content: "";
  502. display:inline-block;
  503. $sq:7px;
  504. width: $sq; height:$sq;
  505. border: 1px solid black;
  506. margin-right: 0.5em;
  507. }
  508. &:hover:before,
  509. &.is-active:before{
  510. background-color: black;
  511. }
  512. &.ajax-loading:before{
  513. @include spining-loader-square;
  514. }
  515. }
  516. }
  517. .productions-parent{
  518. margin-top: 1em;
  519. margin-bottom: 0.5em;
  520. a{
  521. @include nav_link;
  522. &:before{
  523. content:'\2039';
  524. // font-weight: bold;
  525. font-size: 1.7em;
  526. line-height: 0.95;
  527. margin-right:0.1em;
  528. margin-left: -0.4em;
  529. display: inline-block;
  530. vertical-align:bottom;
  531. }
  532. }
  533. }
  534. img{
  535. max-width: 100%;
  536. height: auto;
  537. }
  538. ul, li, ul.inline li:first-child{
  539. margin:0; padding:0;
  540. list-style: none;
  541. }
  542. span.close-col-btn{
  543. // z-index: 10;
  544. pointer-events: all;
  545. cursor: pointer;
  546. position:sticky;
  547. top:0.5em;
  548. padding:0!important;
  549. margin:0.7em 0 0 0.5em;
  550. display: block;
  551. $s:10px;
  552. width:$s; height:$s;
  553. float: left;
  554. background-image: url(../img/close.svg);
  555. background-repeat: no-repeat;
  556. background-position: center;
  557. background-size: contain;
  558. }
  559. html.is-mobile & .node--type-enregistrement.node--view-mode-full{
  560. h2.node-title{
  561. @include content_titles;
  562. }
  563. .audiofield label{display: none;}
  564. }
  565. }
  566. // _ _ _ ___ _
  567. // /_\ _ _ __| (_)___| _ \ |__ _ _ _ ___ _ _
  568. // / _ \ || / _` | / _ \ _/ / _` | || / -_) '_|
  569. // /_/ \_\_,_\__,_|_\___/_| |_\__,_|\_, \___|_|
  570. // |__/
  571. @mixin audio_controls {
  572. // outline: 1px dotted orange;
  573. &>*{
  574. display: inline-block;
  575. vertical-align: middle;
  576. width:20px;height:30px;
  577. background-position: center;
  578. background-size: contain;
  579. }
  580. .play-pause{
  581. background-image: url(../img/audio-player-play.svg);
  582. padding:0 0.3em;
  583. cursor: pointer;
  584. }
  585. &.is-playing{
  586. .play-pause{background-image: url(../img/audio-player-pause.svg);}
  587. }
  588. .previous, .next{
  589. opacity: 0.3;
  590. transition: opacity 0.3s ease-in-out;
  591. cursor: auto;
  592. &.is-active{
  593. opacity: 1;
  594. cursor: pointer;
  595. }
  596. }
  597. .previous{
  598. background-image: url(../img/audio-player-previous.svg);
  599. }
  600. .next{
  601. background-image: url(../img/audio-player-next.svg);
  602. }
  603. }
  604. #audio-player{
  605. // outline: 1px solid blue;
  606. position: absolute;
  607. box-sizing: border-box;
  608. // overflow: hidden;
  609. top:0; left:0;
  610. padding-left:0.7em;
  611. // background-color: white;
  612. height:100%;
  613. min-width:700px;
  614. z-index: 20;
  615. opacity: 0;
  616. pointer-events: none;
  617. transition: opacity 0.7s ease-in-out;
  618. &.visible{
  619. opacity: 1;
  620. pointer-events:all;
  621. }
  622. white-space: nowrap;
  623. &>*{
  624. display: inline-block;
  625. vertical-align: middle;
  626. // word-break:keep-all;
  627. padding:0;
  628. max-height: 100%;
  629. white-space: normal;
  630. @include btn;
  631. }
  632. .btns{
  633. @include audio_controls;
  634. }
  635. .time-line-container{
  636. // height:50%;
  637. background:transparent;
  638. .time-line{
  639. position: relative;
  640. width:70px; height:1px;
  641. background-color: #000;
  642. overflow: visible;
  643. transform: rotateZ(-46deg);
  644. .loader{
  645. width:0; height:100%;
  646. background-color: red;
  647. top:0;left:0;
  648. }
  649. .cursor{
  650. height:10px;width:0;
  651. border-left: 2px solid red;
  652. position:absolute;
  653. left:0; top:-5px;
  654. }
  655. }
  656. }
  657. .time{
  658. &>*{
  659. width:70px;
  660. text-align: right;
  661. }
  662. .current-time{
  663. font-size: 1.4em;
  664. font-weight: 600;
  665. }
  666. .duration{
  667. font-size: 0.75em;
  668. font-weight: 400;
  669. }
  670. }
  671. .favoris{
  672. height:100%;
  673. }
  674. .cartel{
  675. position: relative;
  676. // min-width: 200px;
  677. width: calc(100% - 260px);
  678. // outline: 1px solid orange;
  679. margin-left: 1em;
  680. background-color: white;
  681. opacity: 1;
  682. transition: opacity 0.5s ease-in-out;
  683. &.loading{opacity: 0;}
  684. white-space: nowrap;
  685. .actions, .cartels{
  686. display: inline-block;
  687. vertical-align: top;
  688. white-space: normal;
  689. position: relative;
  690. }
  691. .actions{
  692. width:1.5em;
  693. }
  694. .cartels{
  695. width:calc(100% - 1.5em);
  696. // outline: 1px solid green;
  697. .first-cartel{
  698. // visibility: hidden;
  699. .entrees{
  700. @include entree-micro-square;
  701. }
  702. h2.node-title{
  703. margin:0.2em 0 0;
  704. font-size: 0.9em;
  705. font-weight: 600;
  706. }
  707. p{
  708. margin:0;
  709. font-size: 0.756em;
  710. }
  711. }
  712. .second-cartel{
  713. position: absolute;
  714. top: 0; left:0;
  715. background-color: white;
  716. height:100%; min-width: 100%;
  717. opacity: 0;
  718. transition: opacity 0.2s ease-in-out;
  719. white-space: nowrap;
  720. &>*{
  721. display: inline-block;
  722. vertical-align: top;
  723. white-space: normal;
  724. }
  725. .col-left{
  726. a.ajax-link{
  727. display: block;
  728. font-size: 0.82em;
  729. font-weight: 600;
  730. }
  731. }
  732. .col-right{
  733. border-left:1px solid #1A1A1A;
  734. margin-left:5px; padding-left:5px;
  735. max-width: calc(100% - 100px);
  736. h3{
  737. // display: inline;
  738. // float: left;
  739. @include content_subtitles;
  740. margin:0;
  741. }
  742. div.item-list{
  743. // float: left;
  744. // display: inline;
  745. max-width: 100%;
  746. }
  747. ul{
  748. // display: inline;
  749. max-width: 100%;
  750. padding:0; margin:0;
  751. li{
  752. padding:0; margin:0;
  753. display: inline-block;
  754. list-style: none;
  755. &:not(:last-of-type){
  756. margin-right:0.4em;
  757. &:after{
  758. content:","
  759. }
  760. }
  761. a{
  762. @include content_courant;
  763. }
  764. }
  765. }
  766. }
  767. }
  768. }
  769. &:hover{
  770. .second-cartel{
  771. opacity: 1;
  772. }
  773. }
  774. // article:not(.has-second-cartel){
  775. // .second-cartel{
  776. // display:none;
  777. // }
  778. // }
  779. }
  780. }
  781. // ___ _ _ _
  782. // / __| |_ _ _ __| (_)___
  783. // \__ \ _| || / _` | / _ \
  784. // |___/\__|\_,_\__,_|_\___/
  785. .chutier-icon{
  786. $s:1em;
  787. z-index: 1;
  788. display: block;
  789. position: relative;
  790. width:$s;height:$s;
  791. overflow: hidden;
  792. text-indent: 50em;
  793. // background-color: red;
  794. background-position: center;
  795. background-repeat: no-repeat;
  796. background-size: contain;
  797. background-image: url(../img/favori-off.svg);
  798. &[action="remove"]{
  799. background-image: url(../img/favori-on.svg);
  800. }
  801. transition: opacity 0.2s ease-in-out;
  802. &.ajax-loading{
  803. opacity: 0.2;
  804. }
  805. &.not-logedin{
  806. overflow: visible;
  807. }
  808. .popup{
  809. display:none;
  810. position: absolute;
  811. top:0; left:0;
  812. width:300px; height:auto; min-height: 100px;
  813. .inner{
  814. background-color: rgba(255,255,255,0.9);
  815. border: 1px solid red;
  816. text-indent: 0;
  817. padding: 0.5em;
  818. margin:$s*1.2 0 0 $s*1.2;
  819. p{
  820. font-size: 0.756em;
  821. margin:0;
  822. &:not(:last-of-type){
  823. margin: 0 0 0.4em 0;
  824. }
  825. }
  826. }
  827. }
  828. &:hover{
  829. .popup{
  830. display: block;
  831. }
  832. }
  833. }
  834. .row .col .studio-ui-wrapper{
  835. height: 100%;
  836. }
  837. #studio-ui{
  838. height:100%;
  839. @mixin draggable_sortable_field__item {
  840. display: inline-block;
  841. position: relative;
  842. white-space: nowrap;
  843. pointer-events: none;
  844. // margin-right: 25px;
  845. width:25px;
  846. height: 100%;
  847. &.ui-draggable-dragging{
  848. height:100px;
  849. }
  850. opacity: 1;
  851. transition: opacity 0.1s ease-in-out;
  852. &.ready-to-remove{
  853. opacity:0.3;
  854. cursor:crosshair;
  855. }
  856. &>*{
  857. pointer-events: all;
  858. }
  859. article{
  860. // outline: 1px dotted purple;
  861. position: absolute;
  862. bottom:0;
  863. transform-origin: left top;
  864. transform: rotateZ(-45deg);
  865. h2{
  866. margin:0;
  867. text-transform: none;
  868. a{
  869. white-space: nowrap!important;
  870. &:before{
  871. content:"";
  872. display: inline-block;
  873. vertical-align: middle;
  874. width:$compo_square_size; height:$compo_square_size;
  875. border: 1px solid white;
  876. background-color: white;
  877. // TODO: entries color;
  878. }
  879. font-size: 0.756em;
  880. }
  881. }
  882. }
  883. .handler{
  884. z-index: 99;
  885. cursor: grab;
  886. position: absolute;
  887. bottom:0; left:1px;
  888. display: block;
  889. width:$compo_square_size; height:$compo_square_size;
  890. transform-origin: left top;
  891. transform: rotateZ(-45deg);
  892. border: 1px solid red;
  893. background-color: white;
  894. // TODO: entries color;
  895. }
  896. &.is-active .handler{
  897. background-color: red;
  898. }
  899. } // end mixin
  900. .chutier_ui{
  901. height: 50%;
  902. border-bottom: 1px solid red;
  903. position: relative;
  904. &>h2{
  905. z-index: 10;
  906. position: absolute;
  907. width: calc(100% - 20px);
  908. margin: 0;
  909. padding:0.5em 0;
  910. font-size: 1em;
  911. font-weight: 500;
  912. text-transform: uppercase;
  913. // outline: 1px solid orange;
  914. background-color: white;
  915. }
  916. .documents{
  917. padding-top: 35px;
  918. height:calc(100% - 35px);
  919. overflow-y: auto;
  920. overflow-x: hidden;
  921. // box-sizing: content-box;
  922. // outline: 1px solid green;
  923. ul,li{
  924. margin:0; padding:0;
  925. line-height: 1.2;
  926. }
  927. li{
  928. display: inline-block; vertical-align: top;
  929. width:49%; margin-bottom: 0.5em;
  930. white-space: nowrap;
  931. >div{
  932. display:inline-block;
  933. padding-right: 2em;
  934. &.ui-draggable{
  935. cursor:grab;
  936. }
  937. }
  938. .entrees{
  939. @include entree-micro-square;
  940. }
  941. a.audio-link{
  942. text-transform: capitalize;
  943. font-size: 0.756em;
  944. margin-right: 0.5em;
  945. white-space: normal;
  946. }
  947. .chutier-icon{
  948. display: inline-block;
  949. width:0.7em; height:0.7em;
  950. opacity: 0.8;
  951. }
  952. }
  953. }
  954. }
  955. $compo_square_size:12px;
  956. .composition_ui{
  957. height:50%;
  958. &>h2{
  959. z-index: 10;
  960. position: absolute;
  961. width: calc(100% - 20px);
  962. margin: 0;
  963. padding:0.5em 0;
  964. font-size: 1em;
  965. font-weight: 500;
  966. text-transform: uppercase;
  967. // outline: 1px solid orange;
  968. background-color: white;
  969. }
  970. >.wrapper{
  971. padding-top: 35px;
  972. height:calc(100% - 35px);
  973. overflow: hidden;
  974. white-space: nowrap;
  975. section.compositions-list, section.composer{
  976. display: inline-block; vertical-align: bottom;
  977. height: 100%;
  978. }
  979. .compositions-list{
  980. width:30%;
  981. height:100%; // this is not working
  982. overflow-y: auto;
  983. box-sizing: border-box;
  984. padding-right: 0.5em;
  985. border-right: 1px solid #aaa;
  986. li{
  987. opacity: 1;
  988. transition: opacity 0.3s ease-in-out;
  989. &:hover{
  990. a.delete-composition-link{
  991. opacity: 1;
  992. }
  993. }
  994. &.ajax-loading{
  995. opacity: 0.4;
  996. }
  997. }
  998. a{
  999. font-size: 0.756em;
  1000. $w:7px;
  1001. $s:7px; $m:5px;
  1002. &.composition-link{
  1003. display: inline-block;
  1004. box-sizing: border-box;
  1005. // width:100%;
  1006. width: calc(100% - #{$w +$s +$m +2});
  1007. &:before{
  1008. content: "";
  1009. width:$w; height:$w;
  1010. border: 1px solid black;
  1011. background-color: white;
  1012. display: inline-block;
  1013. vertical-align: middle;
  1014. margin-right: $m;
  1015. }
  1016. &.ajax-loading:before{
  1017. @include spining-loader-square;
  1018. }
  1019. &.is-active:before{
  1020. background-color: black;
  1021. }
  1022. }
  1023. &.delete-composition-link{
  1024. display: inline-block;
  1025. vertical-align: middle;
  1026. $s:7px; width:$s; height:$s;
  1027. margin-left: $m;
  1028. text-indent: 300px; overflow: hidden;
  1029. background-image: url('../img/delete.svg');
  1030. background-repeat: no-repeat;
  1031. background-size: contain;
  1032. opacity: 0;
  1033. transition: opacity 0.3s ease-in-out;
  1034. }
  1035. &.new-composition-link{
  1036. // padding-left: 1em;
  1037. &:before{
  1038. content:"+";
  1039. // font-weight: bold;
  1040. margin-right: $m;
  1041. }
  1042. display: inline-block;
  1043. vertical-align: top;
  1044. overflow: hidden;
  1045. margin-top: 0.4em;
  1046. height:1em;
  1047. transition: height 0.2s ease-in-out;
  1048. &.folded{
  1049. height:0;
  1050. }
  1051. }
  1052. }
  1053. .new-compo-form{
  1054. input[type="text"]{
  1055. font-size: 0.756em;
  1056. padding:0 0.5em;
  1057. width:calc(100% - 50px);
  1058. height:1.7em;
  1059. border: none;
  1060. border-top:1px dotted red;
  1061. border-bottom:1px dotted red;
  1062. }
  1063. button{
  1064. background: none;
  1065. border: none;
  1066. font-size: 1em;
  1067. line-height: 1;
  1068. font-weight: bold;
  1069. }
  1070. opacity: 1;
  1071. transition: opacity 0.2s ease-in-out;
  1072. &.ajax-loading{
  1073. opacity: 0.4;
  1074. }
  1075. }
  1076. }
  1077. .composer{
  1078. position: relative;
  1079. box-sizing: border-box;
  1080. padding-left: 0.5em;
  1081. width:69%;
  1082. $header_height:25px;
  1083. $actions_height:25px;
  1084. $padding:5px;
  1085. opacity:1;
  1086. transition: opacity 0.3s ease-in-out;
  1087. &.ajax-loading{
  1088. opacity:0.3;
  1089. }
  1090. >*{
  1091. box-sizing: border-box;
  1092. }
  1093. >header{
  1094. height:$header_height;
  1095. padding-bottom:$padding;
  1096. font-size: 0.756em;
  1097. }
  1098. >.composition{
  1099. position: relative;
  1100. height:calc(100% - #{$header_height + $actions_height + $padding*2});
  1101. // outline: 1px solid red;
  1102. padding-bottom: 1em;
  1103. .field--name-documents{
  1104. position: relative;
  1105. box-sizing: border-box;
  1106. height: 100%;
  1107. width: 100%; padding:0 0.5em;
  1108. $h:29px; $w:calc(100% - 2px); $c:#A1A1A1;
  1109. &:before, &:after{
  1110. content: "";
  1111. width:$w;
  1112. position: absolute;
  1113. bottom:0; left:0;
  1114. // z-index: -1;
  1115. }
  1116. &:before{
  1117. border-top: 1px solid $c;
  1118. height:$h /2;
  1119. }
  1120. &:after{
  1121. border-left: 1px solid $c;
  1122. border-right: 1px solid $c;
  1123. height:$h;
  1124. }
  1125. .field__item{
  1126. @include draggable_sortable_field__item;
  1127. }
  1128. }
  1129. .remove-drop-zone{
  1130. position: absolute;
  1131. top:0; left:0; width:100%; height:45%;
  1132. z-index: 150;
  1133. // &.ui-droppable-hover{
  1134. // background-color: red;
  1135. // }
  1136. }
  1137. }
  1138. >.actions{
  1139. padding-top:$padding;
  1140. height:$actions_height;
  1141. // outline: 1px solid blue;
  1142. .compo-player-controls{
  1143. @include audio_controls;
  1144. }
  1145. }
  1146. }
  1147. }
  1148. }
  1149. // drag and drop specifics
  1150. // created by js
  1151. .field__item.ui-draggable-dragging{
  1152. // outline: 1px solid green;
  1153. @include draggable_sortable_field__item;
  1154. }
  1155. }
  1156. // ___ _
  1157. // / __| ___ __ _ _ _ __| |_
  1158. // \__ \/ -_) _` | '_/ _| ' \
  1159. // |___/\___\__,_|_| \__|_||_|
  1160. .col[theme="edlp_search_search_form"]{
  1161. &, >.wrapper{
  1162. position: relative;
  1163. height:100%;
  1164. }
  1165. }
  1166. #edlp-search-form{
  1167. height:100%;
  1168. .fieldgroup{
  1169. border-bottom: 1px solid red;
  1170. margin-top:1em;
  1171. margin-bottom: 0em;
  1172. legend{
  1173. font-size: 0.9em;
  1174. margin: 0;
  1175. font-weight: 500;
  1176. }
  1177. .fieldset-wrapper{
  1178. padding-bottom: 1em;
  1179. }
  1180. .form-item{
  1181. margin:0;
  1182. }
  1183. }
  1184. input[type="text"], input[type="search"]{
  1185. font-size: 0.8em;
  1186. padding:0.2em; margin:0;
  1187. border: 1px solid #aaa;
  1188. border-radius: 3px;
  1189. width:90%;
  1190. }
  1191. #edit-entries--wrapper{
  1192. legend{
  1193. cursor: pointer;
  1194. display: block;
  1195. width:100%;
  1196. &:after{
  1197. content: '\2304';
  1198. font-size: 2em;
  1199. font-weight: 200;
  1200. display:inline-block;
  1201. line-height: 0;
  1202. letter-spacing: 0;
  1203. // width:15px;
  1204. height:13px;
  1205. overflow: hidden;
  1206. // text-align: center;
  1207. // outline: 1px solid orange;
  1208. float: right;
  1209. margin-top: 0.5em 0 0 0;
  1210. }
  1211. }
  1212. #edit-entries{
  1213. overflow: hidden;
  1214. height:1px;
  1215. margin:0;
  1216. transition: height 0.4s ease-in-out;
  1217. }
  1218. &.opened{
  1219. legend:after{
  1220. // content: '\2303';
  1221. transform: rotateZ(180deg);
  1222. transform-origin: center;
  1223. margin-top: 0 0 0.5em 0;
  1224. }
  1225. #edit-entries{
  1226. height:362px;
  1227. }
  1228. }
  1229. }
  1230. #edit-entries{
  1231. .form-item{
  1232. label, input{
  1233. display: inline-block;
  1234. vertical-align: middle;
  1235. }
  1236. label{
  1237. font-size: 0.756em;
  1238. }
  1239. input[type="checkbox"]{
  1240. appearance:none;
  1241. $w:10px;
  1242. width:$w; height:$w;
  1243. border: 1px double black;
  1244. background-color: white;
  1245. &:checked{
  1246. background-color: black;
  1247. }
  1248. &[value='134']{
  1249. border-color: var(--e-col-134);
  1250. &:checked{background-color: var(--e-col-134);}
  1251. }
  1252. &[value='121']{
  1253. border-color: var(--e-col-121);
  1254. &:checked{background-color: var(--e-col-121);}
  1255. }
  1256. &[value='125']{
  1257. border-color: var(--e-col-125);
  1258. &:checked{background-color: var(--e-col-125);}
  1259. }
  1260. &[value='119']{
  1261. border-color: var(--e-col-119);
  1262. &:checked{background-color: var(--e-col-119);}
  1263. }
  1264. &[value='132']{
  1265. border-color: var(--e-col-132);
  1266. &:checked{background-color: var(--e-col-132);}
  1267. }
  1268. &[value='122']{
  1269. border-color: var(--e-col-122);
  1270. &:checked{background-color: var(--e-col-122);}
  1271. }
  1272. &[value='129']{
  1273. border-color: var(--e-col-129);
  1274. &:checked{background-color: var(--e-col-129);}
  1275. }
  1276. &[value='120']{
  1277. border-color: var(--e-col-120);
  1278. &:checked{background-color: var(--e-col-120);}
  1279. }
  1280. &[value='130']{
  1281. border-color: var(--e-col-130);
  1282. &:checked{background-color: var(--e-col-130);}
  1283. }
  1284. &[value='118']{
  1285. border-color: var(--e-col-118);
  1286. &:checked{background-color: var(--e-col-118);}
  1287. }
  1288. &[value='127']{
  1289. border-color: var(--e-col-127);
  1290. &:checked{background-color: var(--e-col-127);}
  1291. }
  1292. &[value='133']{
  1293. border-color: var(--e-col-133);
  1294. &:checked{background-color: var(--e-col-133);}
  1295. }
  1296. &[value='128']{
  1297. border-color: var(--e-col-128);
  1298. &:checked{background-color: var(--e-col-128);}
  1299. }
  1300. &[value='124']{
  1301. border-color: var(--e-col-124);
  1302. &:checked{background-color: var(--e-col-124);}
  1303. }
  1304. &[value='116']{
  1305. border-color: var(--e-col-116);
  1306. &:checked{background-color: var(--e-col-116);}
  1307. }
  1308. &[value='117']{
  1309. border-color: var(--e-col-117);
  1310. &:checked{background-color: var(--e-col-117);}
  1311. }
  1312. &[value='131']{
  1313. border-color: var(--e-col-131);
  1314. &:checked{background-color: var(--e-col-131);}
  1315. }
  1316. &[value='126']{
  1317. border-color: var(--e-col-126);
  1318. &:checked{background-color: var(--e-col-126);}
  1319. }
  1320. &[value='123']{
  1321. border-color: var(--e-col-123);
  1322. &:checked{background-color: var(--e-col-123);}
  1323. }
  1324. }
  1325. }
  1326. }
  1327. input[type="submit"]{
  1328. font-size: 0.756em;
  1329. padding:0.1em;
  1330. margin:1em 0 0 0;
  1331. float:right;
  1332. opacity: 1;
  1333. transition: opacity 0.3s ease-in-out;
  1334. }
  1335. &.ajax-loading input[type="submit"]{
  1336. opacity:0.2;
  1337. pointer-events: none;
  1338. }
  1339. }
  1340. .col[theme="edlp_search_results"]{
  1341. opacity: 1;
  1342. transition: opacity 0.3s ease-in-out;
  1343. &.ajax-loading{
  1344. opacity:0.2;
  1345. }
  1346. article.node{
  1347. &:first-of-type{
  1348. margin-top: 1em!important;
  1349. }
  1350. .entrees{
  1351. @include entree-micro-square;
  1352. }
  1353. h2.node-title{
  1354. margin:0 0 0.3em 0;
  1355. // font-size: 0.8em;
  1356. // font-weight: 500;
  1357. // text-transform: none;
  1358. }
  1359. // .description{
  1360. // p{
  1361. // margin:0;
  1362. // font-size: 0.75em;
  1363. // }
  1364. // }
  1365. }
  1366. }
  1367. // _ _ _ _ _
  1368. // /_\ (_)__ ___ __ | \| |___ __| |___
  1369. // / _ \ | / _` \ \ / | .` / _ \/ _` / -_)
  1370. // /_/ \_\/ \__,_/_\_\ |_|\_\___/\__,_\___|
  1371. // |__/
  1372. // body.path-edlp-node main{
  1373. // main .col>.wrapper, .edlp-ajax-node{
  1374. // height: 100%;
  1375. // }
  1376. // }
  1377. // _ _
  1378. // /_\ __ _ ___ _ _ __| |__ _
  1379. // / _ \/ _` / -_) ' \/ _` / _` |
  1380. // /_/ \_\__, \___|_||_\__,_\__,_|
  1381. // |___/
  1382. body.path-agenda main .col{
  1383. &>.wrapper{
  1384. height:100%;
  1385. }
  1386. }
  1387. .agenda{
  1388. // position: relative;
  1389. // white-space: nowrap;
  1390. // height: 100%;
  1391. // >*{
  1392. // white-space: normal;
  1393. // }
  1394. // div.column{
  1395. // display: inline-block;
  1396. // vertical-align: top;
  1397. // height:100%;
  1398. // }
  1399. // div.next-event{
  1400. // width:65%;
  1401. // }
  1402. // div.future-past-events{
  1403. // width:33%;
  1404. // }
  1405. ul,li{
  1406. margin:0; padding:0;
  1407. list-style: none;
  1408. }
  1409. }
  1410. // _ _
  1411. // | || |___ _ __ ___
  1412. // | __ / _ \ ' \/ -_)
  1413. // |_||_\___/_|_|_\___|
  1414. // ___ _ _ _
  1415. // | _ \_ _ ___ __| |_ _ __| |_(_)___ _ _ ___
  1416. // | _/ '_/ _ \/ _` | || / _| _| / _ \ ' \(_-<
  1417. // |_| |_| \___/\__,_|\_,_\__|\__|_\___/_||_/__/
  1418. body.path-frontpage, body.path-productions{
  1419. .layout-content .row{
  1420. // opacity: 1;
  1421. white-space: normal;
  1422. min-height: 100%;
  1423. .grid{
  1424. position: relative;
  1425. min-height: 100%; max-height: 100%;
  1426. }
  1427. .col{
  1428. height:auto;
  1429. opacity:1;
  1430. transition: opacity 0.5s ease-in-out;
  1431. // box-sizing: content-box;
  1432. &.offfield{
  1433. opacity: 0;
  1434. transition: opacity 0s ease-in-out;
  1435. }
  1436. &.col-2:last-child{
  1437. padding-left: 0em;
  1438. padding-right: 1em;
  1439. }
  1440. >.wrapper{
  1441. margin-bottom: 1em;
  1442. padding:0;
  1443. >*{padding:0;}
  1444. article.node{
  1445. .field--name-field-visuel{
  1446. // a,img{
  1447. // display: block;
  1448. // width: 100%;
  1449. // height:auto;
  1450. // }
  1451. // http://www.goldenapplewebdesign.com/responsive-aspect-ratios-with-pure-css/
  1452. // maintain box size without waiting for image loading
  1453. a{
  1454. display: block;
  1455. width: 100%;
  1456. padding-bottom: 56.25%; // ratio 800*450;
  1457. // height:auto;
  1458. }
  1459. img{
  1460. // display: none;
  1461. position: absolute;
  1462. top: 0; bottom: 0; left: 0; right: 0;
  1463. }
  1464. }
  1465. header{
  1466. background-color: rgba(255,255,255,0.95);
  1467. box-sizing: border-box;
  1468. width: 100%;
  1469. padding:0.5em 1em;
  1470. h2.node-title{
  1471. margin:0;
  1472. @include content_titles;
  1473. }
  1474. // p{margin: 0;}
  1475. }
  1476. &.node--view-mode-image-2-columns{
  1477. header{
  1478. position: absolute;
  1479. bottom: 0; left:0;
  1480. h2.node-title{
  1481. @include content_big_titles;
  1482. }
  1483. }
  1484. }
  1485. &.node--view-mode-image-1-columns{
  1486. .field--name-field-visuel{
  1487. padding-bottom: 35px;
  1488. }
  1489. header{
  1490. box-sizing: border-box;
  1491. position: absolute;
  1492. bottom: 0; left:0;
  1493. }
  1494. }
  1495. &.node--view-mode-text-1-column{
  1496. // box-sizing: border-box;
  1497. padding:0 1em;
  1498. }
  1499. }
  1500. }
  1501. }
  1502. }
  1503. }
  1504. // ___ _
  1505. // | __|__ ___| |_ ___ _ _
  1506. // | _/ _ \/ _ \ _/ -_) '_|
  1507. // |_|\___/\___/\__\___|_|
  1508. @mixin oblique-list {
  1509. display: inline-block;
  1510. position: relative;
  1511. list-style: none;
  1512. margin: 0 1.5em 0 0;
  1513. // width:2em; height:10em;
  1514. padding: 0;
  1515. a{
  1516. position: absolute;
  1517. bottom: 0;
  1518. transform-origin: left bottom;
  1519. transform: rotateZ(-45deg);
  1520. color: #000;
  1521. text-decoration: none;
  1522. text-transform: uppercase;
  1523. font-size: 0.756em;
  1524. white-space: nowrap;
  1525. }
  1526. }
  1527. footer{
  1528. position: relative;
  1529. pointer-events: none;
  1530. // outline: 1px dotted blue;
  1531. >.wrapper{
  1532. white-space: nowrap;
  1533. // height:100%;
  1534. >.region{
  1535. // height:100%;
  1536. // display: table-cell;
  1537. display: inline-block;
  1538. vertical-align: baseline;
  1539. white-space:normal;
  1540. // pointer-events: none;
  1541. // outline: 1px dotted purple;
  1542. // position: relative;
  1543. >*{
  1544. display: inline-block; vertical-align: bottom;
  1545. }
  1546. }
  1547. .region-footer-left{
  1548. // float:left;
  1549. width:12%;
  1550. // min-width:50px;
  1551. text-align: left;
  1552. }
  1553. .region-footer-center{
  1554. // float: none;
  1555. width: 72%;
  1556. overflow:hidden;
  1557. text-align: center;
  1558. }
  1559. .region-footer-right{
  1560. // float:right;
  1561. min-width:12%;
  1562. // min-width: 50px;
  1563. text-align: right;
  1564. }
  1565. @media only screen and (max-width: 1270px) {
  1566. .region-footer-left{
  1567. width:9%;
  1568. }
  1569. .region-footer-center{
  1570. width: 80%;
  1571. overflow:hidden;
  1572. text-align: center;
  1573. }
  1574. .region-footer-right{
  1575. box-sizing: content-box;
  1576. min-width:5%;
  1577. }
  1578. }
  1579. }
  1580. #block-footer{
  1581. display: inline-block;
  1582. margin-bottom: 1em;
  1583. ul{
  1584. margin:0;
  1585. padding:0;
  1586. white-space: nowrap;
  1587. li{
  1588. pointer-events: all;
  1589. // @include oblique-list;
  1590. display: inline-block;
  1591. &:first-of-type{
  1592. margin-left: 1em;
  1593. }
  1594. a{
  1595. font-size: 0.756em;
  1596. @include btn;
  1597. &:before{
  1598. content: "";
  1599. display:inline-block;
  1600. $sq:7px;
  1601. width: $sq; height:$sq;
  1602. border: 1px solid black;
  1603. margin-right: 0.5em;
  1604. }
  1605. &:hover:before,
  1606. &.is-active:before{
  1607. background-color: black;
  1608. }
  1609. &.ajax-loading:before{
  1610. @include spining-loader-square;
  1611. }
  1612. }
  1613. }
  1614. }
  1615. @media only screen and (max-width: 1270px) {
  1616. margin-top: 15px;
  1617. ul{
  1618. li{
  1619. display: block;
  1620. margin-left: 0!important;
  1621. padding:0;
  1622. line-height: 0.6;
  1623. a{
  1624. @include content_petit;
  1625. padding:0;
  1626. }
  1627. }
  1628. }
  1629. }
  1630. }
  1631. // remove #block-productions from selector
  1632. // to enable again oblique style for all block-menu
  1633. nav#block-productions.block-menu{
  1634. display: inline-block;
  1635. ul{
  1636. margin:0;
  1637. padding:0;
  1638. li{
  1639. pointer-events: all;
  1640. @include oblique-list;
  1641. &:first-of-type{
  1642. margin-left: 1em;
  1643. }
  1644. a{
  1645. @include btn;
  1646. &:before{
  1647. content: "";
  1648. display:inline-block;
  1649. $sq:7px;
  1650. width: $sq; height:$sq;
  1651. border: 1px solid black;
  1652. margin-right: 0.5em;
  1653. }
  1654. &:hover:before,
  1655. &.is-active:before{
  1656. background-color: black;
  1657. }
  1658. &.ajax-loading:before{
  1659. @include spining-loader-square;
  1660. }
  1661. }
  1662. }
  1663. }
  1664. }
  1665. nav#block-productions.block-menu{
  1666. position: relative;
  1667. pointer-events: none;
  1668. display:none;
  1669. body.path-productions &, body.entity-type-node.bundle-page & {display:inline-block;}
  1670. ul{
  1671. margin-left: -3em;
  1672. white-space: nowrap;
  1673. li{
  1674. height:200px; // this is needed to respect the height of oblique links :(
  1675. a{
  1676. // outline: 1px solid blue;
  1677. pointer-events: all;
  1678. // @include btn;
  1679. background-color: rgba(255,255,255, 0.6);
  1680. padding-right: 0.4em;
  1681. &:before{
  1682. content: "";
  1683. display:inline-block;
  1684. $sq:7px;
  1685. width: $sq; height:$sq;
  1686. border: 1px solid red;
  1687. margin-right: 0.5em;
  1688. }
  1689. &:hover:before,
  1690. &.is-active:before,
  1691. &.is-active-trail:before{
  1692. background-color: red;
  1693. }
  1694. &.ajax-loading:before{
  1695. @include spining-loader-square;
  1696. }
  1697. }
  1698. }
  1699. }
  1700. }
  1701. .block-block-edlp-entrees{
  1702. pointer-events: none;
  1703. body.path-productions &,
  1704. body.entity-type-node.bundle-page &,
  1705. body.path-agenda & {display:none}
  1706. display: inline-block;
  1707. // vertical-align: top;
  1708. div.item-list{
  1709. ul{
  1710. margin:0;
  1711. white-space: nowrap;
  1712. li{
  1713. @include oblique-list;
  1714. margin:0;
  1715. white-space: nowrap;
  1716. pointer-events: none;
  1717. span.oblique-wrapper{
  1718. height:120px; // this is needed to respect the height of oblique links :(
  1719. display: inline-block;
  1720. vertical-align: bottom;
  1721. position: relative;
  1722. width:1.5em;
  1723. }
  1724. a.term-link, a.articles-link{
  1725. // outline: 1px solid blue;
  1726. pointer-events: all;
  1727. // background-color: #fff;
  1728. background-color: rgba(255,255,255, 0.6);
  1729. // @include btn;
  1730. padding-right: 0.4em;
  1731. color:black;
  1732. transition: color 0.3s ease-in-out;
  1733. &:before{
  1734. content: "";
  1735. display:inline-block;
  1736. $sq:7px;
  1737. width: $sq; height:$sq;
  1738. border: 1px solid #000;
  1739. background-color: #000;
  1740. margin-right: 0.5em;
  1741. transition: background-color 0.1s ease-in-out;
  1742. }
  1743. &.articles-link{
  1744. margin-left: 4em;
  1745. text-transform: capitalize;
  1746. }
  1747. }
  1748. .entree-content{
  1749. display: inline-block;
  1750. // outline: 1px solid green;
  1751. width:0;
  1752. overflow: hidden;
  1753. opacity: 0;
  1754. transition: all 300ms ease-in-out;
  1755. transition-property: width,opacity;
  1756. span.oblique-wrapper:first-of-type{
  1757. margin-left: 0.5em;
  1758. }
  1759. span.oblique-wrapper a{
  1760. text-transform: none;
  1761. pointer-events: auto;
  1762. &:before{
  1763. content: "";
  1764. display:inline-block;
  1765. $sq:5px;
  1766. width: $sq; height:$sq;
  1767. border: 1px solid #000;
  1768. margin-right: 0.5em;
  1769. }
  1770. &.ajax-loading:before{
  1771. @include spining-loader-square;
  1772. }
  1773. }
  1774. .term-description{
  1775. display: inline-block;
  1776. margin-left: 1.5em;
  1777. text-align: left;
  1778. width:250px;
  1779. word-wrap:break-word;
  1780. // word-break:break-all;
  1781. hyphens: auto;
  1782. white-space: normal;
  1783. background-color: $transparent-bg;
  1784. padding:0.5em;
  1785. padding-bottom:0;
  1786. p{
  1787. font-size: 0.65em;
  1788. margin:0;
  1789. }
  1790. }
  1791. }
  1792. // TODO: replace variable system by attribute color
  1793. // a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1794. // border-color: attr(color);
  1795. // background-color: attr(color);
  1796. // }
  1797. &[tid='134']{
  1798. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1799. border-color: var(--e-col-134);background-color: var(--e-col-134);}}
  1800. &[tid='121']{
  1801. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1802. border-color: var(--e-col-121);background-color: var(--e-col-121);}}
  1803. &[tid='125']{
  1804. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1805. border-color: var(--e-col-125);background-color: var(--e-col-125);}}
  1806. &[tid='119']{
  1807. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1808. border-color: var(--e-col-119);background-color: var(--e-col-119);}}
  1809. &[tid='132']{
  1810. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1811. border-color: var(--e-col-132);background-color: var(--e-col-132);}}
  1812. &[tid='122']{
  1813. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1814. border-color: var(--e-col-122);background-color: var(--e-col-122);}}
  1815. &[tid='129']{
  1816. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1817. border-color: var(--e-col-129);background-color: var(--e-col-129);}}
  1818. &[tid='120']{
  1819. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1820. border-color: var(--e-col-120);background-color: var(--e-col-120);}}
  1821. &[tid='130']{
  1822. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1823. border-color: var(--e-col-130);background-color: var(--e-col-130);}}
  1824. &[tid='118']{
  1825. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1826. border-color: var(--e-col-118);background-color: var(--e-col-118);}}
  1827. &[tid='127']{
  1828. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1829. border-color: var(--e-col-127);background-color: var(--e-col-127);}}
  1830. &[tid='133']{
  1831. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1832. border-color: var(--e-col-133);background-color: var(--e-col-133);}}
  1833. &[tid='128']{
  1834. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1835. border-color: var(--e-col-128);background-color: var(--e-col-128);}}
  1836. &[tid='124']{
  1837. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1838. border-color: var(--e-col-124);background-color: var(--e-col-124);}}
  1839. &[tid='116']{
  1840. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1841. border-color: var(--e-col-116);background-color: var(--e-col-116);}}
  1842. &[tid='117']{
  1843. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1844. border-color: var(--e-col-117);background-color: var(--e-col-117);}}
  1845. &[tid='131']{
  1846. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1847. border-color: var(--e-col-131);background-color: var(--e-col-131);}}
  1848. &[tid='126']{
  1849. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1850. border-color: var(--e-col-126);background-color: var(--e-col-126);}}
  1851. &[tid='123']{
  1852. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1853. border-color: var(--e-col-123);background-color: var(--e-col-123);}}
  1854. // &.highlighted{
  1855. // a.term_link{
  1856. // color: red;
  1857. // }
  1858. // }
  1859. .entree-content span.oblique-wrapper a:not(:hover):not(.is-active):before{background-color: #fff!important;}
  1860. a.articles-link:not(:hover):not(.is-active):before{
  1861. background-color: #fff!important;
  1862. }
  1863. &:not(.opened):not(.highlighted){
  1864. a.term-link:not(:hover):before{
  1865. background-color: #fff!important;
  1866. }
  1867. }
  1868. &.opened{
  1869. // outline: 1px solid purple;
  1870. a.term-link:after {
  1871. content: '';
  1872. position: absolute;
  1873. left: 15px; right:0;
  1874. bottom: -3px;
  1875. border-bottom: 1px solid grey;
  1876. }
  1877. .entree-content{
  1878. width:350px;
  1879. opacity: 1;
  1880. }
  1881. }
  1882. // &:not(:first-of-type) .entree-content{display: none;}
  1883. }
  1884. }
  1885. &.opened, &.highlighted{
  1886. li:not(.opened):not(.highlighted):not(:hover){
  1887. a.term-link{
  1888. color:#a1a1a1;
  1889. }
  1890. }
  1891. }
  1892. }
  1893. }
  1894. $icons_w:20px;
  1895. $mobile_icon_w:15px;
  1896. @mixin iconlinkblock($bgimgurl, $bgimgurlactive) {
  1897. pointer-events: all;
  1898. margin-left: 0.5em;
  1899. // @include btn;
  1900. a{
  1901. box-sizing: border-box;
  1902. display: block;
  1903. $wh:$icons_w;
  1904. width:$wh; height:$wh;
  1905. text-indent: $wh*2;
  1906. margin: 0;
  1907. overflow: hidden;
  1908. // mask-image: $bgimgurl;
  1909. // mask-size: contain;
  1910. // background-color: #000;
  1911. // transition: background-color 0.3s ease-in-out;
  1912. background-image: $bgimgurl;
  1913. background-repeat: no-repeat;
  1914. background-size: contain;
  1915. cursor: pointer;
  1916. &:hover, &.is-active{
  1917. // background-color: red;
  1918. background-image: $bgimgurlactive;
  1919. }
  1920. html.is-mobile &{
  1921. $wh:$mobile_icon_w;
  1922. width:$wh; height:$wh;
  1923. text-indent: $wh*2;
  1924. }
  1925. }
  1926. }
  1927. .block.random-player{
  1928. margin-bottom: 1em;
  1929. @include iconlinkblock(url(../img/random.svg), url(../img/random-active.svg));
  1930. }
  1931. #block-studiolinkblock{
  1932. margin-bottom: 1em;
  1933. margin-left: 0.2em;
  1934. @include iconlinkblock(url(../img/studio.svg), url(../img/studio-active.svg));
  1935. }
  1936. #block-userlogin{
  1937. margin-bottom: 1em;
  1938. pointer-events: all;
  1939. margin-left: 0.2em;
  1940. $wh:$icons_w;
  1941. position: relative;
  1942. // box-sizing: border-box;
  1943. width:$wh; height: $wh;
  1944. h2{
  1945. box-sizing: content-box;
  1946. // @include btn;
  1947. // padding:0;
  1948. position: relative;
  1949. width:$wh; height:$wh;
  1950. background-image: url(../img/studio.svg);
  1951. // background-color: red;
  1952. background-size: contain;
  1953. text-indent: $wh*2;
  1954. margin: 0;
  1955. overflow: hidden;
  1956. z-index: 1;
  1957. cursor: pointer;
  1958. }
  1959. .block-content{
  1960. z-index: 0;
  1961. position:absolute;
  1962. right:0;bottom:$wh;
  1963. padding:0.5em;
  1964. padding-bottom: 20px;
  1965. background-color: $transparent-bg;
  1966. border-top: 1px solid red;
  1967. border-bottom: 1px solid red;
  1968. overflow: hidden;
  1969. box-sizing:border-box;
  1970. height: 0px;
  1971. opacity:0;
  1972. pointer-events:none;
  1973. transition: all 0.5s ease-in-out;
  1974. transition-property: height,opacity;
  1975. // &:hover{
  1976. // height:200px;
  1977. // opacity:1;
  1978. // pointer-events: auto;
  1979. // }
  1980. form{
  1981. font-size: 0.75em;
  1982. }
  1983. .item-list{
  1984. ul{margin:0;}
  1985. li{
  1986. margin:0;
  1987. list-style: none;
  1988. a{
  1989. color: inherit;
  1990. text-decoration: none;
  1991. font-size: 0.75em;
  1992. white-space:nowrap;
  1993. }
  1994. }
  1995. }
  1996. }
  1997. &:hover{
  1998. .block-content{
  1999. height:200px;
  2000. opacity: 1;
  2001. pointer-events:auto;
  2002. }
  2003. }
  2004. }
  2005. #block-edlpsearchlinkblock{
  2006. margin-bottom: 1em;
  2007. @include iconlinkblock(url(../img/search.svg), url(../img/search-active.svg));
  2008. margin-left: 0.2em;
  2009. }
  2010. .block-language{
  2011. float: none;
  2012. margin-top: 0;
  2013. margin-right: 2em;
  2014. ul{
  2015. margin:0; padding:0;
  2016. li{
  2017. display: inline-block; vertical-align: middle;
  2018. list-style: none;
  2019. pointer-events: all;
  2020. a{
  2021. font-size: 0.690em;
  2022. color:inherit;
  2023. text-decoration: none;
  2024. text-transform: capitalize;
  2025. margin-left: 0.8em;
  2026. @include btn;
  2027. &:before{
  2028. content: "";
  2029. display:inline-block;
  2030. $sq:0.6em;
  2031. width: $sq; height:$sq;
  2032. border: 1px solid red;
  2033. margin-right: 0.3em;
  2034. }
  2035. }
  2036. &.is-active,
  2037. &:hover{
  2038. a:before{
  2039. border-color: red;
  2040. background-color: red;
  2041. }
  2042. }
  2043. }
  2044. }
  2045. html.is-mobile &{
  2046. // outline: 1px solid green;
  2047. border-left: none;
  2048. ul{
  2049. margin-right:0.5em;
  2050. }
  2051. li{
  2052. line-height: 0;
  2053. a{
  2054. padding:0;
  2055. margin:0;
  2056. // &:before{display: none;}
  2057. &.is-active{
  2058. display:none;
  2059. }
  2060. }
  2061. }
  2062. }
  2063. }
  2064. html.is-mobile &{
  2065. position: fixed;
  2066. box-sizing: border-box;
  2067. bottom:0; left:0;
  2068. width:100%;
  2069. background-color: #fff;
  2070. padding-top:0;
  2071. padding-bottom:0;
  2072. .region-footer-left, .region-footer-right{
  2073. width: 50%;
  2074. >*{
  2075. margin:0.4em 0!important;
  2076. }
  2077. }
  2078. #block-footer, .block-language{
  2079. // margin-top: 0;
  2080. li{
  2081. display: inline-block;
  2082. a{
  2083. font-size: 0.680em;
  2084. &:before{
  2085. $sq:5px;
  2086. width: $sq; height:$sq;
  2087. }
  2088. }
  2089. }
  2090. }
  2091. .region-footer-right{
  2092. text-align: right;
  2093. }
  2094. }
  2095. }
  2096. // _ _ _ ___
  2097. // | \| |___ __| |___ | _ \___ _ __ _ _ _ __
  2098. // | .` / _ \/ _` / -_) | _/ _ \ '_ \ || | '_ \
  2099. // |_|\_\___/\__,_\___| |_| \___/ .__/\_,_| .__/
  2100. // |_| |_|
  2101. .node-popup{
  2102. .inner{
  2103. position: relative;
  2104. .entrees{
  2105. @include entree-micro-square;
  2106. }
  2107. .title{
  2108. margin:0.2em 0 0;
  2109. // margin:0.3em 0;
  2110. font-size: 0.9em;
  2111. font-weight: 600;
  2112. }
  2113. .description{
  2114. p{
  2115. margin:0;
  2116. font-size: 0.756em;
  2117. }
  2118. }
  2119. .chutier-icon{
  2120. &[action="add"]{
  2121. display:none;
  2122. }
  2123. position:absolute;
  2124. top:0.4em; right:0.4em;
  2125. }
  2126. }
  2127. }
  2128. // __ ___ _ ___ _ _ _
  2129. // \ \ / (_)__| |___ ___| __(_) | |_ ___ _ _
  2130. // \ V /| / _` / -_) _ \ _|| | | _/ -_) '_|
  2131. // \_/ |_\__,_\___\___/_| |_|_|\__\___|_|
  2132. // complete rewrite of url_to_video_filter css
  2133. .url-to-video-container{
  2134. // display:block;
  2135. margin:10px auto;
  2136. // width:100%;
  2137. &.no-js{
  2138. border:solid black 1px;
  2139. .loader{
  2140. // background:url(../images/no-js.png) no-repeat center center;
  2141. // background-size:40px 40px;
  2142. }
  2143. .url-to-video-player{
  2144. cursor:auto;
  2145. }
  2146. }
  2147. .loader{
  2148. // top:240px;
  2149. // left:50%;
  2150. // transform:translate(-50%, -50%);
  2151. // background:#FFF url(../images/ajax-loader.gif) no-repeat center center;
  2152. top:auto; left: auto;
  2153. transform: none;
  2154. }
  2155. span.url-to-video-player{
  2156. // display:block;
  2157. // width:100%;
  2158. /* assuming that the video has a 16:9 ratio */
  2159. // padding-bottom:56.25%;
  2160. padding-bottom:0;
  2161. // overflow:hidden;
  2162. // position:relative;
  2163. // width:100%;
  2164. // height:100%;
  2165. height:auto;
  2166. // cursor:hand;
  2167. // cursor:pointer;
  2168. // display: block;
  2169. &:before{
  2170. content: "";
  2171. display: block;
  2172. /* assuming that the video has a 16:9 ratio */
  2173. padding-top: 56.25%;
  2174. }
  2175. img.player-thumb
  2176. {
  2177. // background-position:center center;
  2178. // background-size:cover;
  2179. // position: absolute;
  2180. // top: 0;
  2181. // left: 0;
  2182. // width: 100%;
  2183. // height: 100%;
  2184. // cursor:pointer;
  2185. }
  2186. .play-button
  2187. {
  2188. z-index: 5;
  2189. // height:40px;
  2190. // width:40px;
  2191. // display:block;
  2192. // background:url(../images/play-button.png) no-repeat center center;
  2193. // background-size:40px 40px;
  2194. // position:absolute;
  2195. // top:240px;
  2196. top:50%;
  2197. // left:50%;
  2198. // transform:translate(-50%, -50%);
  2199. // cursor:pointer;
  2200. }
  2201. iframe.player-iframe
  2202. {
  2203. // width:100%;
  2204. // height:100%;
  2205. // position:absolute;
  2206. // top:0;
  2207. // left:0;
  2208. }
  2209. }
  2210. }
  2211. #user-register-form{
  2212. width:29em;
  2213. input{
  2214. @include content_courant;
  2215. }
  2216. label{
  2217. @include content_subtitles;
  2218. display: inline-block;
  2219. width: 16em;
  2220. white-space: normal;
  2221. }
  2222. .form-item{
  2223. white-space: nowrap;
  2224. }
  2225. .description{
  2226. @include content_petit;
  2227. max-width: 100%;
  2228. white-space: normal;
  2229. }
  2230. input[type='email'], input[type='password']{
  2231. width:17em;
  2232. }
  2233. .password-strength, .password-strength__meter{
  2234. width:98%;
  2235. }
  2236. .password-strength__title, .password-confirm{
  2237. @include content_courant;
  2238. }
  2239. }
  2240. #better-messages-default.better-messages-overlay{
  2241. border-radius: 0;
  2242. padding:0.8em;
  2243. box-shadow: 0 2px 10px #716f6f;
  2244. .better-messages-content{
  2245. }
  2246. .better-messages-footer{
  2247. border-top: none;
  2248. .better-messages-close{
  2249. @include content_courant;
  2250. span{
  2251. height:15px; width:15px;
  2252. background-size: contain;
  2253. }
  2254. }
  2255. }
  2256. }