annotate sat_templates/templates/bulma/static/styles.css @ 342:0d6826a73c0f

(bulma) CSS: fix content overflow in media object: Overflow was sometimes breaking design with media object. This was notably the case when viewing a list item with a long `<pre>` section, e.g. a ticket with a code pasted with long lines). This patch fixes it.
author Goffi <goffi@goffi.org>
date Fri, 01 Oct 2021 17:37:40 +0200
parents 45499870bbf4
children d28816a65b7f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
1 :root {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
2 --photo-height: 280px;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
3 --photo-height--poster: 500px;
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
4 --col-primary: #82baff;
248
a841837afe78 css (bulma): use a variable for grey light
Goffi <goffi@goffi.org>
parents: 242
diff changeset
5 --grey-light: hsl(0, 0%, 71%);
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
6 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
7
292
829d87a70136 bulma (CSS): override default Bulma `overflow-y` to avoid permanent scrollbar
Goffi <goffi@goffi.org>
parents: 291
diff changeset
8 html {
829d87a70136 bulma (CSS): override default Bulma `overflow-y` to avoid permanent scrollbar
Goffi <goffi@goffi.org>
parents: 291
diff changeset
9 /* Bulma default force scrollbar, we don't want this */
829d87a70136 bulma (CSS): override default Bulma `overflow-y` to avoid permanent scrollbar
Goffi <goffi@goffi.org>
parents: 291
diff changeset
10 overflow-y: auto;
829d87a70136 bulma (CSS): override default Bulma `overflow-y` to avoid permanent scrollbar
Goffi <goffi@goffi.org>
parents: 291
diff changeset
11 }
829d87a70136 bulma (CSS): override default Bulma `overflow-y` to avoid permanent scrollbar
Goffi <goffi@goffi.org>
parents: 291
diff changeset
12
289
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
13 body.body--fullscreen {
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
14 display: flex;
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
15 flex-direction: column;
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
16 height: 100vh;
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
17 width: 100vw;
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
18 overflow: hidden;
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
19 }
f1a39607d6a5 bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
Goffi <goffi@goffi.org>
parents: 286
diff changeset
20
235
f5f428a50c10 chat, ticket: use `pre-wrap` instead of `pre` for whitespaces
Goffi <goffi@goffi.org>
parents: 230
diff changeset
21 .has-whitespace-pre-wrap {
f5f428a50c10 chat, ticket: use `pre-wrap` instead of `pre` for whitespaces
Goffi <goffi@goffi.org>
parents: 230
diff changeset
22 white-space: pre-wrap;
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
23 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
24
303
877f01720036 bulma (lists): creation, invitations, item deletion:
Goffi <goffi@goffi.org>
parents: 299
diff changeset
25 .has-whitespace-pre-line {
877f01720036 bulma (lists): creation, invitations, item deletion:
Goffi <goffi@goffi.org>
parents: 299
diff changeset
26 white-space: pre-line;
877f01720036 bulma (lists): creation, invitations, item deletion:
Goffi <goffi@goffi.org>
parents: 299
diff changeset
27 }
877f01720036 bulma (lists): creation, invitations, item deletion:
Goffi <goffi@goffi.org>
parents: 299
diff changeset
28
309
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
29 .has-decoration-line-through {
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
30 text-decoration: line-through;
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
31 }
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
32
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
33 .is-avatar {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
34 height: 64px;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
35 width: 64px;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
36 border-radius: 50%;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
37 border: 1px solid #bbb;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
38 background-color: #eee;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
39 overflow: hidden;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
40 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
41
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
42 .is-video-thumbnail-wrapper {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
43 background-color: black;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
44 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
45
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
46 .is-video-thumbnail-wrapper, .is-video-thumbnail {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
47 height: 100%;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
48 width: 100%;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
49 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
50
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
51
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
52 .is-photo-thumbnail {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
53 max-height: var(--photo-height);
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
54 max-width: 100%;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
55 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
56
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
57 .is-photo-thumbnail-container {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
58 height: var(--photo-height);
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
59
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
60 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
61
299
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
62 .is-top-right {
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
63 /* position element on top right corner, outside document flow (abolute positioning)
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
64 * useful for delete icon
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
65 */
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
66 position: absolute;
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
67 top: 0.25rem;
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
68 right: 0.25rem;
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
69 }
75f1cd6da46e bulma (components/block): new `data` and `delete_icon` arguments in `icon_item`
Goffi <goffi@goffi.org>
parents: 294
diff changeset
70
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
71 .has-items-centered {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
72 align-items: center;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
73 justify-content: center;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
74 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
75
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
76 .is-poster {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
77 height: var(--photo-height--poster) !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
78 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
79
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
80 .is-poster>.is-photo-thumbnail {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
81 max-height: var(--photo-height--poster) !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
82 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
83
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
84 .has-items-vcentered {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
85 align-items: center;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
86 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
87
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
88
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
89 .x-is-hoverable:hover {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
90 background-color: #eee !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
91 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
92
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
93 .x-is-hoverable-primary:hover {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
94 background-color: var(--col-primary) !important;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
95 border-radius: 50%;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
96 box-shadow: 0px 0px 0 0.25rem var(--col-primary);
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
97 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
98
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
99 .is-chat-message {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
100 margin: 0.5rem 0 0 !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
101 padding: 0 !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
102 border: 0 !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
103 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
104
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
105 a.is-wrapping {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
106 line-height: 0;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
107 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
108
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
109 .has-no-background {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
110 box-shadow: none !important;
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
111 background-color: initial !important;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
112 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
113
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
114 .pagination-disabled {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
115 background-color: white;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
116 border-color: #dbdbdb;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
117 color: #b5b5b5;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
118 cursor: auto;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
119 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
120
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
121 .pagination-disabled:hover {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
122 background-color: white;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
123 border-color: #dbdbdb;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
124 color: #b5b5b5;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
125 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
126
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
127 .has-text-shortenable {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
128 overflow: hidden;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
129 text-overflow: ellipsis;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
130 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
131
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
132 .has-border-dashed {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
133 border-style: dashed;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
134 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
135
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
136 .has-border-grey-light {
248
a841837afe78 css (bulma): use a variable for grey light
Goffi <goffi@goffi.org>
parents: 242
diff changeset
137 border-color: var(--grey-light);
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
138 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
139
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
140 .has-justify-start {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
141 justify-content: start;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
142 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
143
309
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
144 .has-width-7 {
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
145 width: 7em;
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
146 }
27511c821481 bulma (list/overview): use specialised view for `grocery` list
Goffi <goffi@goffi.org>
parents: 303
diff changeset
147
342
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
148 .media-content {
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
149 min-width: 15em;
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
150 }
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
151
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
152 .column {
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
153 max-width: 100%;
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
154 }
0d6826a73c0f (bulma) CSS: fix content overflow in media object:
Goffi <goffi@goffi.org>
parents: 319
diff changeset
155
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
156 /**************
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
157 * selections *
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
158 **************/
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
159
254
8411a274448e bulma (css): new `is-not-selectable` class
Goffi <goffi@goffi.org>
parents: 253
diff changeset
160 .is-not-selectable {
8411a274448e bulma (css): new `is-not-selectable` class
Goffi <goffi@goffi.org>
parents: 253
diff changeset
161 user-select: none;
8411a274448e bulma (css): new `is-not-selectable` class
Goffi <goffi@goffi.org>
parents: 253
diff changeset
162 }
8411a274448e bulma (css): new `is-not-selectable` class
Goffi <goffi@goffi.org>
parents: 253
diff changeset
163
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
164 .selected_for_action {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
165 outline: solid var(--col-primary) 0.25rem;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
166 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
167
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
168 .selected_for_deletion {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
169 outline: solid red 0.25rem;
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
170 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
171
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
172 /***************
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
173 * misc states *
248
a841837afe78 css (bulma): use a variable for grey light
Goffi <goffi@goffi.org>
parents: 242
diff changeset
174 ***************/
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
175
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
176 .state_deleted {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
177 opacity: 0;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
178 transform: scale(0);
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
179 transition: opacity 0.5s ease-out, transform 0.5s ease-out;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
180 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
181
319
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
182 /**********
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
183 * editor *
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
184 **********/
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
185
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
186 .tag_input {
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
187 flex-grow: 1;
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
188 margin-bottom: 0.5rem;
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
189 width: auto;
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
190 }
45499870bbf4 bulma: new `editor` templates:
Goffi <goffi@goffi.org>
parents: 309
diff changeset
191
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
192
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
193 /***********
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
194 * dialogs *
248
a841837afe78 css (bulma): use a variable for grey light
Goffi <goffi@goffi.org>
parents: 242
diff changeset
195 ***********/
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
196
294
a587d664f62c bulma (dialogs,css): added `modal-dialog` to avoid transforming other modals
Goffi <goffi@goffi.org>
parents: 293
diff changeset
197 .modal-dialog {
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
198 transform: scaleY(0);
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
199 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
200
294
a587d664f62c bulma (dialogs,css): added `modal-dialog` to avoid transforming other modals
Goffi <goffi@goffi.org>
parents: 293
diff changeset
201 div.state_appended .modal-dialog, div.main_notification.state_appended {
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
202 transform: scaleY(1);
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
203 transition: transform 0.15s ease-in;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
204 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
205
271
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
206 div.main_notification.state_closing {
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
207 transform: scaleY(0);
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
208 }
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
209
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
210 .main_notification {
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
211 position: fixed;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
212 top: 2rem;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
213 left: 0;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
214 right: 0;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
215 z-index: 10000;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
216 transform: scaleY(0);
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
217 transition: transform 0.15s ease-in;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
218 }
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
219
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
220 div.main_notification>div.column {
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
221 display: flex;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
222 max-width: 95%;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
223 }
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
224 div.main_notification>div.column>div.notification {
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
225 max-width: 80rem;
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
226 }
dea66eead698 bulma (dialogs): new `notification.html` template
Goffi <goffi@goffi.org>
parents: 270
diff changeset
227
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
228 .click_to_close {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
229 cursor: pointer;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
230 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
231
270
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
232 div.search_dialog.is-active>div.dropdown-menu {
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
233 display: none;
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
234 }
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
235
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
236 div.search_dialog.open>div.dropdown-menu {
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
237 display: block;
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
238 }
2378084522e1 bulma (dialogs): new `macros.html` with a search dialog
Goffi <goffi@goffi.org>
parents: 262
diff changeset
239
275
dbdaf1d7442b bulma (invitation/manager.html): simpler manager, taking profit of dynamism
Goffi <goffi@goffi.org>
parents: 271
diff changeset
240 div.dropdown-item.selected {
dbdaf1d7442b bulma (invitation/manager.html): simpler manager, taking profit of dynamism
Goffi <goffi@goffi.org>
parents: 271
diff changeset
241 background-color: var(--col-primary);
dbdaf1d7442b bulma (invitation/manager.html): simpler manager, taking profit of dynamism
Goffi <goffi@goffi.org>
parents: 271
diff changeset
242 }
dbdaf1d7442b bulma (invitation/manager.html): simpler manager, taking profit of dynamism
Goffi <goffi@goffi.org>
parents: 271
diff changeset
243
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
244 /**********
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
245 * panels *
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
246 **********/
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
247
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
248 .panel_wrapper {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
249 position: absolute;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
250 top: 0;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
251 right: 0;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
252 height: 100vh;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
253 width: 100vw;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
254 z-index: 150;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
255 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
256
260
caadb06854a0 bulma (invitation): invitation manager first draft
Goffi <goffi@goffi.org>
parents: 255
diff changeset
257 .comments_side_panel, .invitation_manager_side_panel {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
258 position: absolute;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
259 top: 0;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
260 right: 0;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
261 height: 100vh;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
262 width: 0;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
263 max-width: 80%;
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
264 z-index: 200;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
265 background: white;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
266 transition: width 0.3s ease-out;
255
c8eb86b49cb5 bulma (css): fixed overflow in slideshow
Goffi <goffi@goffi.org>
parents: 254
diff changeset
267 overflow: auto;
c8eb86b49cb5 bulma (css): fixed overflow in slideshow
Goffi <goffi@goffi.org>
parents: 254
diff changeset
268 color: black;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
269 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
270
260
caadb06854a0 bulma (invitation): invitation manager first draft
Goffi <goffi@goffi.org>
parents: 255
diff changeset
271 .comments_side_panel.open, .invitation_manager_side_panel.open {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
272 width: 55rem;
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
273 transition: width 0.3s ease-out;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
274 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
275
291
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
276 /*********
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
277 * embed *
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
278 *********/
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
279
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
280 .embed {
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
281 width: 100%;
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
282 height: 100%;
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
283 }
1ca9384fb681 bulma: new `embed/embed.html` template
Goffi <goffi@goffi.org>
parents: 289
diff changeset
284
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
285 /****************
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
286 * media player *
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
287 ****************/
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
288
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
289 div.media_player>div.media_elt,
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
290 div.media_player>div.media_elt>ogvjs,
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
291 div.media_player>div.media_elt>video {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
292 width: 100%;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
293 height: 100%;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
294 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
295
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
296 /* div.media_player:fullscreen>div.media_elt, */
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
297 /* div.media_player:fullscreen>div.media_elt>ogvjs, */
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
298 /* div.media_player:fullscreen>div.media_elt>video */
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
299 /* { */
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
300 /* height: 100%; */
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
301 /* } */
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
302
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
303 div.media_player {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
304 position: relative;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
305 background-color: black;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
306 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
307
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
308 div.media_overlay_play {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
309 position: absolute;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
310 top: 0;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
311 left: 0;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
312 width: 100%;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
313 height: 100%;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
314 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
315
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
316 div.media_overlay_play>.icon {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
317 height: 12rem;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
318 width: 12rem;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
319 font-size: 10rem;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
320 color: #eee;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
321 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
322
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
323 div.media_player.in_use>div.media_overlay_play {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
324 display: none !important;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
325 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
326
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
327 div.media_player .media_pause, div.media_player .media_sound_off,
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
328 div.media_player .media_resize_small {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
329 display: none;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
330 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
331
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
332 div.media_player.playing .media_pause {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
333 display: inline-block;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
334 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
335
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
336 div.media_player.playing .media_play {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
337 display: none;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
338 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
339
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
340 div.media_player.muted .media_sound_off {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
341 display: inline-block;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
342 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
343
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
344 div.media_player.muted .media_sound_on {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
345 display: none;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
346 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
347
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
348 div.media_player:fullscreen .media_resize_small {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
349 display: inline-block;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
350 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
351
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
352 div.media_player:fullscreen .media_resize_full {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
353 display: none;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
354 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
355
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
356 div.media_controls {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
357 position: absolute;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
358 bottom: 0;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
359 left: 0;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
360 width: 100%;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
361 margin: 0;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
362 background-color: #000A;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
363 color: #eee;
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
364 z-index: 150;
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
365 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
366
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
367 div.media_controls progress {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
368 cursor: pointer;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
369 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
370
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
371 div.media_player.playing:hover>.media_controls,
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
372 div.media_player.playing>.media_controls.hidden:hover
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
373 {
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
374 opacity: 1;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
375 transition: opacity 0.5s;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
376 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
377
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
378 div.media_player.playing>.media_controls,
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
379 div.media_player.playing>.media_controls.hidden {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
380 opacity: 0;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
381 transition: opacity 2s;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
382 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
383
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
384 div.media_player .media_controls .icon:hover {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
385 background-color: #777;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
386 cursor: pointer;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
387 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
388
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
389 div.media_player .timer {
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
390 cursor: pointer;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
391 width: 5em;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
392 text-align: center;
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
393 }
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
394
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
395 div.media_player.no_fullscreen>div.media_controls>div.click_to_fullscreen {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
396 display: none;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
397 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
398
278
672b6137ef29 bulma (components): template for the alternative media player
Goffi <goffi@goffi.org>
parents: 275
diff changeset
399
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
400 /*************
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
401 * slideshow *
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
402 *************/
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
403
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
404 .slideshow {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
405 position: absolute;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
406 top: 0;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
407 left: 0;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
408 width: 100vw;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
409 height: 100vh;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
410 background-color: black;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
411 color: white;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
412 z-index: 100;
255
c8eb86b49cb5 bulma (css): fixed overflow in slideshow
Goffi <goffi@goffi.org>
parents: 254
diff changeset
413 overflow: hidden;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
414 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
415
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
416 div.slideshow>button.delete {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
417 z-index: 100;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
418 background-color: var(--grey-light);
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
419 position: absolute;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
420 top: 1rem;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
421 right: 2rem;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
422 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
423
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
424 div.slideshow>div.click_to_comment {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
425 z-index: 100;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
426 position: absolute;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
427 right: 1.7rem;
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
428 bottom: 3rem;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
429 cursor: pointer;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
430 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
431
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
432 div.slideshow>div.comments__count {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
433 z-index: 100;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
434 position: absolute;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
435 right: 1.7rem;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
436 bottom: 0.5rem;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
437 font-weight: bold;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
438 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
439
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
440 .swiper-slide {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
441 display: flex;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
442 align-items: center;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
443 justify-content: center;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
444 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
445
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
446 .swiper-container {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
447 height: 100%;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
448 width: 100%;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
449 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
450
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
451 .swiper-button-prev {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
452 left: 2.1rem !important;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
453 color: #f1f1f1 !important;
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
454 z-index: 150;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
455 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
456
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
457 .swiper-button-next {
253
7397d81dd633 bulma (css): fixed tab/spacing
Goffi <goffi@goffi.org>
parents: 252
diff changeset
458 right: 2.1rem !important;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
459 color: #f1f1f1 !important;
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
460 z-index: 150;
252
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
461 }
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
462
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
463 .slide_img {
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
464 max-height: 100%;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
465 max-width: 100%;
a0e889d73bad bulma (photo): slideshow
Goffi <goffi@goffi.org>
parents: 248
diff changeset
466 }
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
467
286
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
468 .slide_video {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
469 height: 100%;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
470 width: 100%;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
471 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
472
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
473 div.slideshow.flag_no_pagination>div.swiper-container>div.swiper-pagination {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
474 display: none;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
475 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
476
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
477 div.slideshow.flag_no_scrollbar>div.swiper-container>div.swiper-scrollbar {
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
478 display: none;
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
479 }
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
480
f8026bf77a4c bulma (CSS): updated classed to handle native video player + video in slideshow
Goffi <goffi@goffi.org>
parents: 278
diff changeset
481
242
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
482 /***************
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
483 * progression *
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
484 ***************/
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
485
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
486 .progress_started img {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
487 filter: grayscale(100%);
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
488 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
489
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
490 .progress_finished img {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
491 filter: grayscale(0%);
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
492 transition: filter 1.5s ease-out;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
493 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
494
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
495 .progress_finished progress {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
496 height: 0;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
497 opacity: 0;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
498 transition: all 1.5s ease-out;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
499 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
500
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
501 .progress {
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
502 transition: width 5s ease;
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
503 }
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
504
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
505
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
506 /**********
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
507 * drawer *
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
508 **********/
bb5193cef770 bulma (css): some styles to handle dynamic content + misc
Goffi <goffi@goffi.org>
parents: 235
diff changeset
509
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
510
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
511 .panel-drawer {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
512 /* A panel which is hidden by default but can be
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
513 opened when it's clicked */
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
514 max-height: 0;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
515 opacity: 0;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
516 overflow: hidden;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
517 transition: max-height 0.5s, opacity 0.5s;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
518 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
519
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
520 .panel-drawer.state_clicked {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
521 opacity: 1;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
522 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
523
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
524 /********
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
525 * code *
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
526 ********/
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
527
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
528 .highlight {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
529 overflow: auto;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
530 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
531
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
532 /**********
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
533 * blocks *
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
534 **********/
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
535
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
536 .block_separator {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
537 font-size: 1.4em;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
538 display: flex;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
539 margin: 1rem 0;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
540 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
541
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
542 .block_separator__label {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
543 display: inline-block;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
544 margin: 0 0.2em;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
545 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
546
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
547 .block_separator__line {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
548 height: 1px;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
549 background: #ccc;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
550 flex: 1;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
551 margin-top: 0.7em;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
552 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
553
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
554 /********
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
555 * tabs *
260
caadb06854a0 bulma (invitation): invitation manager first draft
Goffi <goffi@goffi.org>
parents: 255
diff changeset
556 ********/
230
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
557
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
558 #tab_guests {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
559 overflow: auto;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
560 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
561
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
562 .tab__page {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
563 display: None;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
564 }
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
565
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
566 .tab__page.state_clicked {
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
567 display: block;
0e69b5843c2f theme: bulma theme first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
568 }
262
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
569
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
570 /*********
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
571 * icons *
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
572 *********/
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
573
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
574 .icon_animate_spin {
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
575 animation: spin 2s infinite linear;
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
576 display: inline-block;
23180988ee6b bulma (css): added `icon_animate_spin` class
Goffi <goffi@goffi.org>
parents: 260
diff changeset
577 }
293
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
578
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
579 @keyframes spin {
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
580 0% {
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
581 transform: rotate(0deg);
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
582 }
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
583
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
584 100% {
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
585 transform: rotate(359deg);
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
586 }
7a4bd6de6a56 bulma (css): add missing keyframe for `spin` animation
Goffi <goffi@goffi.org>
parents: 292
diff changeset
587 }