app.scss 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464
  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 entrie-micro-square {
  21. display:inline-block;
  22. $s:8px;
  23. width:$s; height:$s;
  24. background-color: black;
  25. margin-right: 3px;
  26. &[tid='134']{background-color: var(--e-col-134);}
  27. &[tid='121']{background-color: var(--e-col-121);}
  28. &[tid='125']{background-color: var(--e-col-125);}
  29. &[tid='119']{background-color: var(--e-col-119);}
  30. &[tid='132']{background-color: var(--e-col-132);}
  31. &[tid='122']{background-color: var(--e-col-122);}
  32. &[tid='129']{background-color: var(--e-col-129);}
  33. &[tid='120']{background-color: var(--e-col-120);}
  34. &[tid='130']{background-color: var(--e-col-130);}
  35. &[tid='118']{background-color: var(--e-col-118);}
  36. &[tid='127']{background-color: var(--e-col-127);}
  37. &[tid='133']{background-color: var(--e-col-133);}
  38. &[tid='128']{background-color: var(--e-col-128);}
  39. &[tid='124']{background-color: var(--e-col-124);}
  40. &[tid='116']{background-color: var(--e-col-116);}
  41. &[tid='117']{background-color: var(--e-col-117);}
  42. &[tid='131']{background-color: var(--e-col-131);}
  43. &[tid='126']{background-color: var(--e-col-126);}
  44. &[tid='123']{background-color: var(--e-col-123);}
  45. }
  46. // .layout-container{
  47. // pointer-events: none;
  48. // }
  49. // _ _
  50. // | |_ ___ __ _ __| |___ _ _
  51. // | ' \/ -_) _` / _` / -_) '_|
  52. // |_||_\___\__,_\__,_\___|_|
  53. header[role="banner"]{
  54. pointer-events: all;
  55. // TODO: what header height to fit well with player ??
  56. }
  57. #block-edlptheme-branding{
  58. display: inline-block;
  59. h1{
  60. margin:0; display: inline-block;
  61. a.site-name{
  62. display: block;
  63. $w:290px;
  64. width:$w; height:$w * 0.22;
  65. background-image: url(../img/logo.svg);
  66. background-color: white;
  67. background-repeat:no-repeat;
  68. background-size: contain;
  69. white-space: nowrap;
  70. text-indent: 500px;
  71. overflow: hidden;
  72. }
  73. }
  74. }
  75. #block-mainnavigation{
  76. float:right;
  77. margin-top: 25px;
  78. ul{
  79. margin:0; padding: 0;
  80. white-space: nowrap;
  81. li{
  82. margin:0; padding:0;
  83. display: inline-block;
  84. a{
  85. font-size: 0.756em;
  86. color:inherit;
  87. text-decoration: none;
  88. text-transform: uppercase;
  89. margin-left: 1em;
  90. &:before{
  91. content: "";
  92. display:inline-block;
  93. $sq:0.6em;
  94. width: $sq; height:$sq;
  95. border: 1px solid red;
  96. margin-right: 0.3em;
  97. }
  98. &.ajax-loading:before{
  99. @include spining-loader-square;
  100. }
  101. &.is-active:before,
  102. &:hover:before{
  103. border-color: red;
  104. background-color: red;
  105. }
  106. }
  107. }
  108. }
  109. }
  110. .block-language{
  111. float: right;
  112. margin-top: 24px;
  113. margin-left: 2em;
  114. ul{
  115. margin:0; padding:0;
  116. li{
  117. display: inline-block; vertical-align: middle;
  118. list-style: none;
  119. a{
  120. font-size: 0.690em;
  121. color:inherit;
  122. text-decoration: none;
  123. text-transform: capitalize;
  124. margin-left: 0.8em;
  125. &:before{
  126. content: "";
  127. display:inline-block;
  128. $sq:0.6em;
  129. width: $sq; height:$sq;
  130. border: 1px solid red;
  131. margin-right: 0.3em;
  132. }
  133. }
  134. &.is-active,
  135. &:hover{
  136. a:before{
  137. border-color: red;
  138. background-color: red;
  139. }
  140. }
  141. }
  142. }
  143. }
  144. // _
  145. // _ __ __ _(_)_ _
  146. // | ' \/ _` | | ' \
  147. // |_|_|_\__,_|_|_||_|
  148. main[role="main"]{
  149. .layout-content{
  150. pointer-events: none;
  151. .row{
  152. pointer-events: none;
  153. height:100%;
  154. overflow: hidden;
  155. .col{
  156. pointer-events: none;
  157. height: 100%;
  158. position: relative;
  159. &>.wrapper{
  160. pointer-events:all;
  161. position: relative;
  162. box-sizing: border-box;
  163. border-top: 1px solid red;
  164. border-bottom: 1px solid red;
  165. background-color: $transparent-bg;
  166. padding:0 0 1em;
  167. max-height: 100%;
  168. overflow-y: auto;
  169. &>*{
  170. padding:0 1em;
  171. }
  172. // .os-scroll{
  173. // box-sizing: border-box;
  174. // max-height: 100%;
  175. // padding:0 1em;
  176. // }
  177. }
  178. }
  179. }
  180. .field.text-formatted{
  181. a.audio-link{
  182. border-bottom: 1px dotted red;
  183. }
  184. }
  185. }
  186. article.node>h2, h2.title{
  187. @include content_titles;
  188. }
  189. article.node p{
  190. @include content_courant;
  191. }
  192. img{
  193. max-width: 100%;
  194. height: auto;
  195. }
  196. ul, li, ul.inline li:first-child{
  197. margin:0; padding:0;
  198. list-style: none;
  199. }
  200. // ajax loading effects
  201. .layout-content{
  202. transition: opacity 0.5s ease-in-out;
  203. opacity: 1;
  204. }
  205. body.ajax-loading &{
  206. .layout-content .col:not([theme="edlp_search_search_form"]){
  207. opacity:0.2;
  208. }
  209. &:before{
  210. content:"";
  211. display: block;
  212. position: absolute;
  213. z-index: 10;
  214. $s:60px;
  215. width:$s; height:$s;
  216. top:calc(50% - #{$s/2}); left:calc(50% - #{$s/2});
  217. // padding:1em;
  218. background-color: rgba(255,255,255, 0.5);
  219. background-image: url(../img/edlp-loader-anim.svg);
  220. background-size: 50%;
  221. background-repeat: no-repeat;
  222. background-position: center;
  223. // border-radius: $s/2;
  224. }
  225. }
  226. span.close-col-btn{
  227. // z-index: 10;
  228. pointer-events: all;
  229. cursor: pointer;
  230. position:absolute;
  231. top:0; right:0;
  232. padding:0!important; margin:0.5em;
  233. display: block;
  234. $s:10px;
  235. width:$s; height:$s;
  236. background-image: url(../img/close.svg);
  237. background-repeat: no-repeat;
  238. background-position: center;
  239. background-size: contain;
  240. }
  241. }
  242. // _ _ _ ___ _
  243. // /_\ _ _ __| (_)___| _ \ |__ _ _ _ ___ _ _
  244. // / _ \ || / _` | / _ \ _/ / _` | || / -_) '_|
  245. // /_/ \_\_,_\__,_|_\___/_| |_\__,_|\_, \___|_|
  246. // |__/
  247. #audio-player{
  248. position: absolute;
  249. top:0; left:0;
  250. background-color: white;
  251. height:100%; min-width:300px;
  252. z-index: 20;
  253. opacity: 0;
  254. // outline: 1px solid blue;
  255. pointer-events: none;
  256. transition: opacity 0.7s ease-in-out;
  257. &.visible{
  258. opacity: 1;
  259. pointer-events:all;
  260. }
  261. &>*{
  262. display: inline-block;
  263. vertical-align: middle;
  264. // word-break:keep-all;
  265. padding:0;
  266. max-height: 100%;
  267. // outline: 1px solid green;
  268. }
  269. .btns{
  270. // outline: 1px dotted orange;
  271. &>*{
  272. display: inline-block;
  273. vertical-align: middle;
  274. width:20px;height:30px;
  275. background-position: center;
  276. background-size: contain;
  277. }
  278. .play-pause{
  279. background-image: url(../img/audio-player-play.svg);
  280. padding:0 0.3em;
  281. cursor: pointer;
  282. }
  283. .previous, .next{
  284. opacity: 0.3;
  285. transition: opacity 0.3s ease-in-out;
  286. cursor: auto;
  287. &.is-active{
  288. opacity: 1;
  289. cursor: pointer;
  290. }
  291. }
  292. .previous{
  293. background-image: url(../img/audio-player-previous.svg);
  294. }
  295. .next{
  296. background-image: url(../img/audio-player-next.svg);
  297. }
  298. }
  299. .time-line-container{
  300. .time-line{
  301. position: relative;
  302. width:70px; height:1px;
  303. background-color: #000;
  304. overflow: visible;
  305. transform: rotateZ(-45deg);
  306. .loader{
  307. width:0; height:100%;
  308. background-color: red;
  309. top:0;left:0;
  310. }
  311. .cursor{
  312. height:10px;width:0;
  313. border-left: 2px solid red;
  314. position:absolute;
  315. left:0; top:-5px;
  316. }
  317. }
  318. }
  319. .time{
  320. &>*{
  321. width:70px;
  322. text-align: right;
  323. }
  324. .current-time{
  325. font-size: 1.4em;
  326. font-weight: 600;
  327. }
  328. .duration{
  329. font-size: 0.75em;
  330. font-weight: 400;
  331. }
  332. }
  333. .favoris{
  334. height:100%;
  335. }
  336. .cartel{
  337. // TODO: set max-width regarding responsive
  338. position: relative;
  339. max-width: 350px;
  340. margin-left: 1em;
  341. background-color: white;
  342. opacity: 1;
  343. transition: opacity 0.5s ease-in-out;
  344. &.loading{opacity: 0;}
  345. white-space: nowrap;
  346. .actions, .cartels{
  347. display: inline-block;
  348. vertical-align: top;
  349. white-space: normal;
  350. position: relative;
  351. }
  352. .actions{
  353. width:1.5em;
  354. }
  355. .cartels{
  356. .first-cartel{
  357. .entrees{
  358. line-height: 0;
  359. span{
  360. @include entrie-micro-square;
  361. }
  362. }
  363. h2.node-title{
  364. margin:0.2em 0 0;
  365. font-size: 1em;
  366. }
  367. p{
  368. margin:0;
  369. font-size: 0.75em;
  370. }
  371. }
  372. .second-cartel{
  373. position: absolute;
  374. top: 0; left:0;
  375. background-color: white;
  376. height:100%; min-width: 100%;
  377. opacity: 0;
  378. transition: opacity 0.2s ease-in-out;
  379. &>*{
  380. display: inline-block;
  381. vertical-align: top;
  382. }
  383. .col-left{
  384. a{
  385. display: block;
  386. font-size: 0.90em;
  387. font-weight: 600;
  388. }
  389. }
  390. .col-right{
  391. font-size: 0.75em;
  392. }
  393. }
  394. }
  395. &:hover{
  396. .second-cartel{
  397. opacity: 1;
  398. }
  399. }
  400. }
  401. &.is-playing{
  402. .btns .play-pause{background-image: url(../img/audio-player-pause.svg);}
  403. }
  404. }
  405. // ___ _ _ _
  406. // / __| |_ _ _ __| (_)___
  407. // \__ \ _| || / _` | / _ \
  408. // |___/\__|\_,_\__,_|_\___/
  409. .chutier-icon{
  410. $s:1em;
  411. z-index: 1;
  412. display: block;
  413. position: relative;
  414. width:$s;height:$s;
  415. overflow: hidden;
  416. text-indent: 50em;
  417. // background-color: red;
  418. background-position: center;
  419. background-repeat: no-repeat;
  420. background-size: contain;
  421. background-image: url(../img/favori-off.svg);
  422. &[action="remove"]{
  423. background-image: url(../img/favori-on.svg);
  424. }
  425. transition: opacity 0.2s ease-in-out;
  426. &.ajax-loading{
  427. opacity: 0.2;
  428. }
  429. &.not-logedin{
  430. overflow: visible;
  431. }
  432. .popup{
  433. display:none;
  434. position: absolute;
  435. top:0; left:0;
  436. width:300px; height:auto; min-height: 100px;
  437. .inner{
  438. background-color: rgba(255,255,255,0.9);
  439. border: 1px solid red;
  440. text-indent: 0;
  441. padding: 0.5em;
  442. margin:$s*1.2 0 0 $s*1.2;
  443. p{margin: 0;}
  444. }
  445. }
  446. &:hover{
  447. .popup{
  448. display: block;
  449. }
  450. }
  451. }
  452. .row .col .studio-ui-wrapper{
  453. height: 100%;
  454. }
  455. #studio-ui{
  456. height:100%;
  457. .chutier_ui{
  458. height: 50%;
  459. border-bottom: 1px solid red;
  460. position: relative;
  461. &>h2{
  462. z-index: 10;
  463. position: absolute;
  464. width: calc(100% - 20px);
  465. margin: 0;
  466. padding:0.5em 0;
  467. font-size: 1em;
  468. font-weight: 500;
  469. text-transform: uppercase;
  470. // outline: 1px solid orange;
  471. background-color: white;
  472. }
  473. .documents{
  474. padding-top: 35px;
  475. height:calc(100% - 35px);
  476. overflow-y: auto;
  477. // box-sizing: content-box;
  478. // outline: 1px solid green;
  479. ul,li{
  480. margin:0; padding:0;
  481. line-height: 1.2;
  482. }
  483. li{
  484. display: inline-block; vertical-align: top;
  485. width:49%; margin-bottom: 0.5em;
  486. white-space: nowrap;
  487. .entrees{
  488. line-height: 0;
  489. span{
  490. @include entrie-micro-square;
  491. }
  492. }
  493. a.audio-link{
  494. text-transform: capitalize;
  495. font-size: 0.756em;
  496. margin-right: 0.5em;
  497. white-space: normal;
  498. }
  499. .chutier-icon{
  500. display: inline-block;
  501. width:0.7em; height:0.7em;
  502. opacity: 0.8;
  503. }
  504. }
  505. }
  506. }
  507. .composition_ui{
  508. height:50%;
  509. &>h2{
  510. z-index: 10;
  511. position: absolute;
  512. width: calc(100% - 20px);
  513. margin: 0;
  514. padding:0.5em 0;
  515. font-size: 1em;
  516. font-weight: 500;
  517. text-transform: uppercase;
  518. // outline: 1px solid orange;
  519. background-color: white;
  520. }
  521. >.wrapper{
  522. padding-top: 35px;
  523. height:calc(100% - 35px);
  524. overflow: hidden;
  525. white-space: nowrap;
  526. section.compositions-list, section.composer{
  527. display: inline-block; vertical-align: top;
  528. height: 100%;
  529. }
  530. .compositions-list{
  531. width:30%; height:100%;
  532. overflow-y: auto;
  533. a{
  534. font-size: 0.756em;
  535. &.new-composition-link{
  536. // padding-left: 1em;
  537. &:before{
  538. content:"+";
  539. font-weight: bold;
  540. margin-right: 0.2em;
  541. }
  542. display: inline-block;
  543. vertical-align: top;
  544. overflow: hidden;
  545. height:1em;
  546. transition: height 0.2s ease-in-out;
  547. &.folded{
  548. height:0;
  549. }
  550. }
  551. }
  552. .new-compo-form{
  553. input[type="text"]{
  554. font-size: 0.756em;
  555. padding:0 0.5em;
  556. width:calc(100% - 50px);
  557. height:1.7em;
  558. border: none;
  559. border-top:1px dotted red;
  560. border-bottom:1px dotted red;
  561. }
  562. button{
  563. background: none;
  564. border: none;
  565. font-size: 1em;
  566. line-height: 1;
  567. font-weight: bold;
  568. }
  569. opacity: 1;
  570. transition: opacity 0.2s ease-in-out;
  571. &.ajax-loading{
  572. opacity: 0.4;
  573. }
  574. }
  575. }
  576. .composer{
  577. box-sizing: content-box;
  578. width:69%;
  579. padding-left: 1em;
  580. border-left: 1px solid #aaa;
  581. }
  582. }
  583. }
  584. }
  585. // ___ _
  586. // / __| ___ __ _ _ _ __| |_
  587. // \__ \/ -_) _` | '_/ _| ' \
  588. // |___/\___\__,_|_| \__|_||_|
  589. .col[theme="edlp_search_search_form"]{
  590. &, >.wrapper{
  591. position: relative;
  592. height:100%;
  593. }
  594. }
  595. #edlp-search-form{
  596. height:100%;
  597. .fieldgroup{
  598. border-bottom: 1px solid red;
  599. margin-top:1em;
  600. margin-bottom: 0em;
  601. legend{
  602. font-size: 0.9em;
  603. margin: 0;
  604. font-weight: 500;
  605. }
  606. .fieldset-wrapper{
  607. padding-bottom: 1em;
  608. }
  609. .form-item{
  610. margin:0;
  611. }
  612. }
  613. input[type="text"], input[type="search"]{
  614. font-size: 0.8em;
  615. padding:0.2em; margin:0;
  616. border: 1px solid #aaa;
  617. border-radius: 3px;
  618. width:90%;
  619. }
  620. #edit-entries{
  621. .form-item{
  622. label, input{
  623. display: inline-block;
  624. vertical-align: middle;
  625. }
  626. label{
  627. font-size: 0.756em;
  628. }
  629. input[type="checkbox"]{
  630. appearance:none;
  631. $w:10px;
  632. width:$w; height:$w;
  633. border: 1px double black;
  634. background-color: white;
  635. &:checked{
  636. background-color: black;
  637. }
  638. &[value='134']{
  639. border-color: var(--e-col-134);
  640. &:checked{background-color: var(--e-col-134);}
  641. }
  642. &[value='121']{
  643. border-color: var(--e-col-121);
  644. &:checked{background-color: var(--e-col-121);}
  645. }
  646. &[value='125']{
  647. border-color: var(--e-col-125);
  648. &:checked{background-color: var(--e-col-125);}
  649. }
  650. &[value='119']{
  651. border-color: var(--e-col-119);
  652. &:checked{background-color: var(--e-col-119);}
  653. }
  654. &[value='132']{
  655. border-color: var(--e-col-132);
  656. &:checked{background-color: var(--e-col-132);}
  657. }
  658. &[value='122']{
  659. border-color: var(--e-col-122);
  660. &:checked{background-color: var(--e-col-122);}
  661. }
  662. &[value='129']{
  663. border-color: var(--e-col-129);
  664. &:checked{background-color: var(--e-col-129);}
  665. }
  666. &[value='120']{
  667. border-color: var(--e-col-120);
  668. &:checked{background-color: var(--e-col-120);}
  669. }
  670. &[value='130']{
  671. border-color: var(--e-col-130);
  672. &:checked{background-color: var(--e-col-130);}
  673. }
  674. &[value='118']{
  675. border-color: var(--e-col-118);
  676. &:checked{background-color: var(--e-col-118);}
  677. }
  678. &[value='127']{
  679. border-color: var(--e-col-127);
  680. &:checked{background-color: var(--e-col-127);}
  681. }
  682. &[value='133']{
  683. border-color: var(--e-col-133);
  684. &:checked{background-color: var(--e-col-133);}
  685. }
  686. &[value='128']{
  687. border-color: var(--e-col-128);
  688. &:checked{background-color: var(--e-col-128);}
  689. }
  690. &[value='124']{
  691. border-color: var(--e-col-124);
  692. &:checked{background-color: var(--e-col-124);}
  693. }
  694. &[value='116']{
  695. border-color: var(--e-col-116);
  696. &:checked{background-color: var(--e-col-116);}
  697. }
  698. &[value='117']{
  699. border-color: var(--e-col-117);
  700. &:checked{background-color: var(--e-col-117);}
  701. }
  702. &[value='131']{
  703. border-color: var(--e-col-131);
  704. &:checked{background-color: var(--e-col-131);}
  705. }
  706. &[value='126']{
  707. border-color: var(--e-col-126);
  708. &:checked{background-color: var(--e-col-126);}
  709. }
  710. &[value='123']{
  711. border-color: var(--e-col-123);
  712. &:checked{background-color: var(--e-col-123);}
  713. }
  714. }
  715. }
  716. }
  717. input[type="submit"]{
  718. font-size: 0.756em;
  719. padding:0.1em;
  720. margin:1em 0 0 0;
  721. float:right;
  722. opacity: 1;
  723. transition: opacity 0.3s ease-in-out;
  724. }
  725. &.ajax-loading input[type="submit"]{
  726. opacity:0.2;
  727. pointer-events: none;
  728. }
  729. }
  730. .col[theme="edlp_search_results"]{
  731. opacity: 1;
  732. transition: opacity 0.3s ease-in-out;
  733. &.ajax-loading{
  734. opacity:0.2;
  735. }
  736. article{
  737. .entrees{
  738. span{
  739. @include entrie-micro-square;
  740. }
  741. }
  742. h2.node-title{
  743. margin:0 0 0.3em 0;
  744. font-size: 0.8em;
  745. font-weight: 500;
  746. text-transform: none;
  747. }
  748. // .description{
  749. // p{
  750. // margin:0;
  751. // font-size: 0.75em;
  752. // }
  753. // }
  754. }
  755. }
  756. // _ _ _ _ _
  757. // /_\ (_)__ ___ __ | \| |___ __| |___
  758. // / _ \ | / _` \ \ / | .` / _ \/ _` / -_)
  759. // /_/ \_\/ \__,_/_\_\ |_|\_\___/\__,_\___|
  760. // |__/
  761. // body.path-edlp-node main{
  762. // main .col>.wrapper, .edlp-ajax-node{
  763. // height: 100%;
  764. // }
  765. // }
  766. // _ _
  767. // /_\ __ _ ___ _ _ __| |__ _
  768. // / _ \/ _` / -_) ' \/ _` / _` |
  769. // /_/ \_\__, \___|_||_\__,_\__,_|
  770. // |___/
  771. body.path-agenda main .col{
  772. &>.wrapper{
  773. height:100%;
  774. }
  775. }
  776. #agenda{
  777. position: relative;
  778. white-space: nowrap;
  779. height: 100%;
  780. div.column{
  781. white-space: normal;
  782. display: inline-block;
  783. vertical-align: top;
  784. height:100%;
  785. }
  786. div.next-event{
  787. width:65%;
  788. }
  789. div.future-past-events{
  790. width:33%;
  791. }
  792. ul,li{
  793. margin:0; padding:0;
  794. list-style: none;
  795. }
  796. article.node--type-evenement{
  797. h2{ @include content_titles; }
  798. }
  799. }
  800. // ___ _ _ _
  801. // | _ \_ _ ___ __| |_ _ __| |_(_)___ _ _ ___
  802. // | _/ '_/ _ \/ _` | || / _| _| / _ \ ' \(_-<
  803. // |_| |_| \___/\__,_|\_,_\__|\__|_\___/_||_/__/
  804. body.path-productions{
  805. .layout-content .row{
  806. white-space: normal;
  807. .col{
  808. height:auto;
  809. &.col-2:last-child{
  810. padding-left: 0em;
  811. padding-right: 1em;
  812. }
  813. >.wrapper{
  814. margin-bottom: 1em;
  815. padding:0;
  816. >*{padding:0;}
  817. article.node{
  818. .field--name-field-visuel{
  819. a,img{
  820. display: block;
  821. width: 100%; height:auto;
  822. }
  823. }
  824. header{
  825. background-color: rgba(255,255,255,0.95);
  826. padding:0.5em 1em;
  827. h2.node-title{
  828. margin:0;
  829. }
  830. p{margin: 0;}
  831. }
  832. &.node--view-mode-image-2-columns{
  833. header{
  834. position: absolute;
  835. bottom: 0; left:0;
  836. h2.node-title{
  837. font-size: 1.6em;
  838. font-weight: 500;
  839. }
  840. }
  841. }
  842. &.node--view-mode-image-1-columns{
  843. h2.node-title{
  844. font-size: 1.2em;
  845. font-weight: 500;
  846. }
  847. }
  848. &.node--view-mode-text-1-column{
  849. padding:0 1em;
  850. }
  851. }
  852. }
  853. }
  854. }
  855. }
  856. // ___ _
  857. // | __|__ ___| |_ ___ _ _
  858. // | _/ _ \/ _ \ _/ -_) '_|
  859. // |_|\___/\___/\__\___|_|
  860. @mixin oblique-list {
  861. display: inline-block;
  862. position: relative;
  863. list-style: none;
  864. margin: 0 1.5em 0 0;
  865. // width:2em; height:10em;
  866. padding: 0;
  867. a{
  868. position: absolute;
  869. bottom: 0;
  870. transform-origin: left bottom;
  871. transform: rotateZ(-45deg);
  872. color: #000;
  873. text-decoration: none;
  874. text-transform: uppercase;
  875. font-size: 0.756em;
  876. white-space: nowrap;
  877. }
  878. }
  879. footer{
  880. position: relative;
  881. pointer-events: none;
  882. // outline: 1px dotted blue;
  883. >.wrapper{
  884. white-space: nowrap;
  885. // height:100%;
  886. >.region{
  887. // height:100%;
  888. // display: table-cell;
  889. display: inline-block;
  890. vertical-align: baseline;
  891. white-space:normal;
  892. // pointer-events: none;
  893. // outline: 1px dotted purple;
  894. // position: relative;
  895. >*{
  896. display: inline-block; vertical-align: bottom;
  897. }
  898. }
  899. .region-footer-left{
  900. // float:left;
  901. width:12%;
  902. // min-width:50px;
  903. text-align: left;
  904. }
  905. .region-footer-center{
  906. // float: none;
  907. width: 72%;
  908. overflow:hidden;
  909. text-align: center;
  910. }
  911. .region-footer-right{
  912. // float:right;
  913. min-width:12%;
  914. // min-width: 50px;
  915. text-align: right;
  916. }
  917. }
  918. nav.block-menu{
  919. display: inline-block;
  920. ul{
  921. margin:0;
  922. padding:0;
  923. li{
  924. pointer-events: all;
  925. @include oblique-list;
  926. &:first-of-type{
  927. margin-left: 1em;
  928. }
  929. a{
  930. &:before{
  931. content: "";
  932. display:inline-block;
  933. $sq:7px;
  934. width: $sq; height:$sq;
  935. border: 1px solid black;
  936. margin-right: 0.5em;
  937. }
  938. &:hover:before,
  939. &.is-active:before{
  940. background-color: black;
  941. }
  942. &.ajax-loading:before{
  943. @include spining-loader-square;
  944. }
  945. }
  946. }
  947. }
  948. }
  949. .block-language{
  950. display: inline-block;
  951. position: relative;
  952. ul{
  953. position: absolute;
  954. bottom:0;
  955. margin:0;
  956. padding:0;
  957. transform-origin: left bottom;
  958. transform: rotateZ(-45deg);
  959. white-space: nowrap;
  960. pointer-events: all;
  961. li{
  962. margin:0; padding:0;
  963. list-style: none;
  964. display: inline-block;
  965. &:last-of-type{
  966. &:before{
  967. content:"/";
  968. margin:0 0.2em;
  969. }
  970. }
  971. a{
  972. color: inherit;
  973. text-decoration: none;
  974. font-size: 0.756em;
  975. }
  976. &.is-active{
  977. a{color: red;}
  978. }
  979. }
  980. }
  981. }
  982. #block-productions{
  983. position: relative;
  984. pointer-events: none;
  985. body:not(.path-productions) & {display:none}
  986. ul{
  987. margin-left: -3em;
  988. white-space: nowrap;
  989. li{
  990. height:200px; // this is needed to respect the height of oblique links :(
  991. a{
  992. // outline: 1px solid blue;
  993. pointer-events: all;
  994. background-color: #fff;
  995. padding-right: 0.4em;
  996. &:before{
  997. content: "";
  998. display:inline-block;
  999. $sq:7px;
  1000. width: $sq; height:$sq;
  1001. border: 1px solid red;
  1002. margin-right: 0.5em;
  1003. }
  1004. &:hover:before{
  1005. background-color: red;
  1006. }
  1007. &.ajax-loading:before{
  1008. @include spining-loader-square;
  1009. }
  1010. }
  1011. }
  1012. }
  1013. }
  1014. .block-block-edlp-entrees{
  1015. pointer-events: none;
  1016. body.path-productions &,
  1017. body.path-agenda & {display:none}
  1018. display: inline-block;
  1019. // vertical-align: top;
  1020. ul{
  1021. margin:0;
  1022. white-space: nowrap;
  1023. li{
  1024. @include oblique-list;
  1025. margin:0;
  1026. white-space: nowrap;
  1027. pointer-events: none;
  1028. span.oblique-wrapper{
  1029. height:120px; // this is needed to respect the height of oblique links :(
  1030. display: inline-block;
  1031. vertical-align: bottom;
  1032. position: relative;
  1033. width:1.5em;
  1034. }
  1035. a.term-link, a.articles-link{
  1036. // outline: 1px solid blue;
  1037. pointer-events: all;
  1038. background-color: #fff;
  1039. padding-right: 0.4em;
  1040. &:before{
  1041. content: "";
  1042. display:inline-block;
  1043. $sq:7px;
  1044. width: $sq; height:$sq;
  1045. border: 1px solid #000;
  1046. background-color: #000;
  1047. margin-right: 0.5em;
  1048. transition: background-color 0.1s ease-in-out;
  1049. }
  1050. &.articles-link{
  1051. margin-left: 2em;
  1052. text-transform: capitalize;
  1053. }
  1054. }
  1055. .entree-content{
  1056. display: inline-block;
  1057. // outline: 1px solid green;
  1058. width:0;
  1059. overflow: hidden;
  1060. opacity: 0;
  1061. transition: all 300ms ease-in-out;
  1062. transition-property: width,opacity;
  1063. span.oblique-wrapper:first-of-type{
  1064. margin-left: 0.5em;
  1065. }
  1066. span.oblique-wrapper a{
  1067. text-transform: none;
  1068. pointer-events: auto;
  1069. &:before{
  1070. content: "";
  1071. display:inline-block;
  1072. $sq:5px;
  1073. width: $sq; height:$sq;
  1074. border: 1px solid #000;
  1075. margin-right: 0.5em;
  1076. }
  1077. }
  1078. .term-description{
  1079. display: inline-block;
  1080. margin-left: 1.5em;
  1081. text-align: left;
  1082. width:250px;
  1083. word-wrap:break-word;
  1084. // word-break:break-all;
  1085. hyphens: auto;
  1086. white-space: normal;
  1087. background-color: $transparent-bg;
  1088. padding:0.5em;
  1089. padding-bottom:0;
  1090. p{
  1091. font-size: 0.65em;
  1092. margin:0;
  1093. }
  1094. }
  1095. }
  1096. // TODO: replace variable system by attribute color
  1097. // a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1098. // border-color: attr(color);
  1099. // background-color: attr(color);
  1100. // }
  1101. &[tid='134']{
  1102. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1103. border-color: var(--e-col-134);background-color: var(--e-col-134);}}
  1104. &[tid='121']{
  1105. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1106. border-color: var(--e-col-121);background-color: var(--e-col-121);}}
  1107. &[tid='125']{
  1108. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1109. border-color: var(--e-col-125);background-color: var(--e-col-125);}}
  1110. &[tid='119']{
  1111. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1112. border-color: var(--e-col-119);background-color: var(--e-col-119);}}
  1113. &[tid='132']{
  1114. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1115. border-color: var(--e-col-132);background-color: var(--e-col-132);}}
  1116. &[tid='122']{
  1117. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1118. border-color: var(--e-col-122);background-color: var(--e-col-122);}}
  1119. &[tid='129']{
  1120. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1121. border-color: var(--e-col-129);background-color: var(--e-col-129);}}
  1122. &[tid='120']{
  1123. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1124. border-color: var(--e-col-120);background-color: var(--e-col-120);}}
  1125. &[tid='130']{
  1126. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1127. border-color: var(--e-col-130);background-color: var(--e-col-130);}}
  1128. &[tid='118']{
  1129. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1130. border-color: var(--e-col-118);background-color: var(--e-col-118);}}
  1131. &[tid='127']{
  1132. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1133. border-color: var(--e-col-127);background-color: var(--e-col-127);}}
  1134. &[tid='133']{
  1135. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1136. border-color: var(--e-col-133);background-color: var(--e-col-133);}}
  1137. &[tid='128']{
  1138. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1139. border-color: var(--e-col-128);background-color: var(--e-col-128);}}
  1140. &[tid='124']{
  1141. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1142. border-color: var(--e-col-124);background-color: var(--e-col-124);}}
  1143. &[tid='116']{
  1144. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1145. border-color: var(--e-col-116);background-color: var(--e-col-116);}}
  1146. &[tid='117']{
  1147. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1148. border-color: var(--e-col-117);background-color: var(--e-col-117);}}
  1149. &[tid='131']{
  1150. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1151. border-color: var(--e-col-131);background-color: var(--e-col-131);}}
  1152. &[tid='126']{
  1153. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1154. border-color: var(--e-col-126);background-color: var(--e-col-126);}}
  1155. &[tid='123']{
  1156. a.term-link:before, .entree-content span.oblique-wrapper a:before{
  1157. border-color: var(--e-col-123);background-color: var(--e-col-123);}}
  1158. // &.highlighted{
  1159. // a.term_link{
  1160. // color: red;
  1161. // }
  1162. // }
  1163. .entree-content span.oblique-wrapper a:not(:hover):not(.is-active):before{background-color: #fff!important;}
  1164. a.articles-link:not(:hover):not(.is-active):before{
  1165. background-color: #fff!important;
  1166. }
  1167. &:not(.opened){
  1168. a.term-link:not(:hover):not(.highlighted):before{
  1169. background-color: #fff!important;
  1170. }
  1171. }
  1172. &.opened{
  1173. // outline: 1px solid purple;
  1174. a.term-link:after {
  1175. content: '';
  1176. position: absolute;
  1177. left: 15px; right:0;
  1178. bottom: -3px;
  1179. border-bottom: 1px solid grey;
  1180. }
  1181. .entree-content{
  1182. width:350px;
  1183. opacity: 1;
  1184. }
  1185. }
  1186. // &:not(:first-of-type) .entree-content{display: none;}
  1187. }
  1188. }
  1189. }
  1190. $icons_w:20px;
  1191. @mixin iconlinkblock($bgimgurl) {
  1192. pointer-events: all;
  1193. margin-left: 0.5em;
  1194. a{
  1195. $wh:$icons_w;
  1196. display: block;
  1197. width:$wh; height:$wh;
  1198. text-indent: $wh*2;
  1199. margin: 0;
  1200. overflow: hidden;
  1201. mask-image: $bgimgurl;
  1202. mask-size: contain;
  1203. background-color: #000;
  1204. transition: background-color 0.3s ease-in-out;
  1205. cursor: pointer;
  1206. &.is-active{
  1207. background-color: red;
  1208. }
  1209. }
  1210. }
  1211. #block-studiolinkblock{
  1212. @include iconlinkblock(url(../img/studio.svg));
  1213. }
  1214. .block.random-player{
  1215. @include iconlinkblock(url(../img/random.svg));
  1216. }
  1217. #block-userlogin{
  1218. pointer-events: all;
  1219. // outline: 1px solid blue;
  1220. $wh:$icons_w;
  1221. position: relative;
  1222. width:$wh; height: $wh;
  1223. // background-color: blue;
  1224. h2{
  1225. position: relative;
  1226. width:$wh; height:$wh;
  1227. background-image: url(../img/studio.svg);
  1228. // background-color: red;
  1229. background-size: contain;
  1230. text-indent: $wh*2;
  1231. margin: 0;
  1232. overflow: hidden;
  1233. z-index: 1;
  1234. cursor: pointer;
  1235. }
  1236. .block-content{
  1237. z-index: 0;
  1238. position:absolute;
  1239. right:0;bottom:$wh;
  1240. padding:0.5em;
  1241. padding-bottom: 20px;
  1242. background-color: $transparent-bg;
  1243. border-top: 1px solid red;
  1244. border-bottom: 1px solid red;
  1245. overflow: hidden;
  1246. box-sizing:border-box;
  1247. height: 0px;
  1248. opacity:0;
  1249. pointer-events:none;
  1250. transition: all 0.5s ease-in-out;
  1251. transition-property: height,opacity;
  1252. // &:hover{
  1253. // height:200px;
  1254. // opacity:1;
  1255. // pointer-events: auto;
  1256. // }
  1257. form{
  1258. font-size: 0.75em;
  1259. }
  1260. .item-list{
  1261. ul{margin:0;}
  1262. li{
  1263. margin:0;
  1264. list-style: none;
  1265. a{
  1266. color: inherit;
  1267. text-decoration: none;
  1268. font-size: 0.75em;
  1269. white-space:nowrap;
  1270. }
  1271. }
  1272. }
  1273. }
  1274. &:hover{
  1275. .block-content{
  1276. height:200px;
  1277. opacity: 1;
  1278. pointer-events:auto;
  1279. }
  1280. }
  1281. }
  1282. #block-edlpsearchlinkblock{
  1283. @include iconlinkblock(url(../img/search.svg));
  1284. }
  1285. }
  1286. // _ _ _ ___
  1287. // | \| |___ __| |___ | _ \___ _ __ _ _ _ __
  1288. // | .` / _ \/ _` / -_) | _/ _ \ '_ \ || | '_ \
  1289. // |_|\_\___/\__,_\___| |_| \___/ .__/\_,_| .__/
  1290. // |_| |_|
  1291. .node-popup{
  1292. .inner{
  1293. position: relative;
  1294. .entrees{
  1295. span{
  1296. @include entrie-micro-square;
  1297. }
  1298. }
  1299. .title{
  1300. margin:0.3em 0;
  1301. font-size: 1.2em;
  1302. font-weight: 500;
  1303. }
  1304. .description{
  1305. p{
  1306. margin:0;
  1307. font-size: 0.75em;
  1308. }
  1309. }
  1310. .chutier-icon{
  1311. position:absolute;
  1312. top:1em; right:1em;
  1313. }
  1314. }
  1315. }
  1316. // __ ___ _ ___ _ _ _
  1317. // \ \ / (_)__| |___ ___| __(_) | |_ ___ _ _
  1318. // \ V /| / _` / -_) _ \ _|| | | _/ -_) '_|
  1319. // \_/ |_\__,_\___\___/_| |_|_|\__\___|_|
  1320. // complete rewrite of url_to_video_filter css
  1321. .url-to-video-container{
  1322. // display:block;
  1323. margin:10px auto;
  1324. // width:100%;
  1325. &.no-js{
  1326. border:solid black 1px;
  1327. .loader{
  1328. // background:url(../images/no-js.png) no-repeat center center;
  1329. // background-size:40px 40px;
  1330. }
  1331. .url-to-video-player{
  1332. cursor:auto;
  1333. }
  1334. }
  1335. .loader{
  1336. // top:240px;
  1337. // left:50%;
  1338. // transform:translate(-50%, -50%);
  1339. // background:#FFF url(../images/ajax-loader.gif) no-repeat center center;
  1340. top:auto; left: auto;
  1341. transform: none;
  1342. }
  1343. span.url-to-video-player{
  1344. // display:block;
  1345. // width:100%;
  1346. /* assuming that the video has a 16:9 ratio */
  1347. // padding-bottom:56.25%;
  1348. padding-bottom:0;
  1349. // overflow:hidden;
  1350. // position:relative;
  1351. // width:100%;
  1352. // height:100%;
  1353. height:auto;
  1354. // cursor:hand;
  1355. // cursor:pointer;
  1356. // display: block;
  1357. &:before{
  1358. content: "";
  1359. display: block;
  1360. /* assuming that the video has a 16:9 ratio */
  1361. padding-top: 56.25%;
  1362. }
  1363. img.player-thumb
  1364. {
  1365. // background-position:center center;
  1366. // background-size:cover;
  1367. // position: absolute;
  1368. // top: 0;
  1369. // left: 0;
  1370. // width: 100%;
  1371. // height: 100%;
  1372. // cursor:pointer;
  1373. }
  1374. .play-button
  1375. {
  1376. z-index: 5;
  1377. // height:40px;
  1378. // width:40px;
  1379. // display:block;
  1380. // background:url(../images/play-button.png) no-repeat center center;
  1381. // background-size:40px 40px;
  1382. // position:absolute;
  1383. // top:240px;
  1384. top:50%;
  1385. // left:50%;
  1386. // transform:translate(-50%, -50%);
  1387. // cursor:pointer;
  1388. }
  1389. iframe.player-iframe
  1390. {
  1391. // width:100%;
  1392. // height:100%;
  1393. // position:absolute;
  1394. // top:0;
  1395. // left:0;
  1396. }
  1397. }
  1398. }