trix-rails 2.0.0 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  @charset "UTF-8";
2
2
  /*
3
- Trix 1.0.0
4
- Copyright © 2018 Basecamp, LLC
3
+ Trix 1.3.1
4
+ Copyright © 2020 Basecamp, LLC
5
5
  http://trix-editor.org/*/
6
6
  trix-editor {
7
7
  border: 1px solid #bbb;
@@ -9,30 +9,41 @@ trix-editor {
9
9
  margin: 0;
10
10
  padding: 0.4em 0.6em;
11
11
  min-height: 5em;
12
- outline: none; }
12
+ outline: none;
13
+ }
13
14
  trix-toolbar * {
14
- box-sizing: border-box; }
15
+ box-sizing: border-box;
16
+ }
15
17
  trix-toolbar .trix-button-row {
16
18
  display: flex;
17
19
  flex-wrap: nowrap;
18
- justify-content: space-between; }
20
+ justify-content: space-between;
21
+ overflow-x: auto;
22
+ }
19
23
  trix-toolbar .trix-button-group {
20
24
  display: flex;
21
25
  margin-bottom: 10px;
22
26
  border: 1px solid #bbb;
23
27
  border-top-color: #ccc;
24
28
  border-bottom-color: #888;
25
- border-radius: 3px; }
29
+ border-radius: 3px;
30
+ }
31
+ trix-toolbar .trix-button-group:not(:first-child) {
32
+ margin-left: 1.5vw;
33
+ }
34
+ @media (max-device-width: 768px) {
26
35
  trix-toolbar .trix-button-group:not(:first-child) {
27
- margin-left: 1.5vw; }
28
- @media (max-device-width: 768px) {
29
- trix-toolbar .trix-button-group:not(:first-child) {
30
- margin-left: 0; } }
36
+ margin-left: 0;
37
+ }
38
+ }
31
39
  trix-toolbar .trix-button-group-spacer {
32
- flex-grow: 1; }
33
- @media (max-device-width: 768px) {
34
- trix-toolbar .trix-button-group-spacer {
35
- display: none; } }
40
+ flex-grow: 1;
41
+ }
42
+ @media (max-device-width: 768px) {
43
+ trix-toolbar .trix-button-group-spacer {
44
+ display: none;
45
+ }
46
+ }
36
47
  trix-toolbar .trix-button {
37
48
  position: relative;
38
49
  float: left;
@@ -46,78 +57,112 @@ trix-toolbar .trix-button {
46
57
  border: none;
47
58
  border-bottom: 1px solid #ddd;
48
59
  border-radius: 0;
49
- background: transparent; }
50
- trix-toolbar .trix-button:not(:first-child) {
51
- border-left: 1px solid #ccc; }
52
- trix-toolbar .trix-button.trix-active {
53
- background: #cbeefa;
54
- color: black; }
55
- trix-toolbar .trix-button:not(:disabled) {
56
- cursor: pointer; }
57
- trix-toolbar .trix-button:disabled {
58
- color: rgba(0, 0, 0, 0.125); }
59
- @media (max-device-width: 768px) {
60
- trix-toolbar .trix-button {
61
- letter-spacing: -0.01em;
62
- padding: 0 0.3em; } }
60
+ background: transparent;
61
+ }
62
+ trix-toolbar .trix-button:not(:first-child) {
63
+ border-left: 1px solid #ccc;
64
+ }
65
+ trix-toolbar .trix-button.trix-active {
66
+ background: #cbeefa;
67
+ color: black;
68
+ }
69
+ trix-toolbar .trix-button:not(:disabled) {
70
+ cursor: pointer;
71
+ }
72
+ trix-toolbar .trix-button:disabled {
73
+ color: rgba(0, 0, 0, 0.125);
74
+ }
75
+ @media (max-device-width: 768px) {
76
+ trix-toolbar .trix-button {
77
+ letter-spacing: -0.01em;
78
+ padding: 0 0.3em;
79
+ }
80
+ }
63
81
  trix-toolbar .trix-button--icon {
64
82
  font-size: inherit;
65
83
  width: 2.6em;
66
84
  height: 1.6em;
67
85
  max-width: calc(0.8em + 4vw);
68
- text-indent: -9999px; }
69
- @media (max-device-width: 768px) {
70
- trix-toolbar .trix-button--icon {
71
- height: 2em;
72
- max-width: calc(0.8em + 3.5vw); } }
86
+ text-indent: -9999px;
87
+ }
88
+ @media (max-device-width: 768px) {
89
+ trix-toolbar .trix-button--icon {
90
+ height: 2em;
91
+ max-width: calc(0.8em + 3.5vw);
92
+ }
93
+ }
94
+ trix-toolbar .trix-button--icon::before {
95
+ display: inline-block;
96
+ position: absolute;
97
+ top: 0;
98
+ right: 0;
99
+ bottom: 0;
100
+ left: 0;
101
+ opacity: 0.6;
102
+ content: "";
103
+ background-position: center;
104
+ background-repeat: no-repeat;
105
+ background-size: contain;
106
+ }
107
+ @media (max-device-width: 768px) {
73
108
  trix-toolbar .trix-button--icon::before {
74
- display: inline-block;
75
- position: absolute;
76
- top: 0;
77
- right: 0;
78
- bottom: 0;
79
- left: 0;
80
- opacity: 0.6;
81
- content: "";
82
- background-position: center;
83
- background-repeat: no-repeat;
84
- background-size: contain; }
85
- @media (max-device-width: 768px) {
86
- trix-toolbar .trix-button--icon::before {
87
- right: 6%;
88
- left: 6%; } }
89
- trix-toolbar .trix-button--icon.trix-active::before {
90
- opacity: 1; }
91
- trix-toolbar .trix-button--icon:disabled::before {
92
- opacity: 0.125; }
109
+ right: 6%;
110
+ left: 6%;
111
+ }
112
+ }
113
+ trix-toolbar .trix-button--icon.trix-active::before {
114
+ opacity: 1;
115
+ }
116
+ trix-toolbar .trix-button--icon:disabled::before {
117
+ opacity: 0.125;
118
+ }
119
+ trix-toolbar .trix-button--icon-attach::before {
120
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M16.5%206v11.5a4%204%200%201%201-8%200V5a2.5%202.5%200%200%201%205%200v10.5a1%201%200%201%201-2%200V6H10v9.5a2.5%202.5%200%200%200%205%200V5a4%204%200%201%200-8%200v12.5a5.5%205.5%200%200%200%2011%200V6h-1.5z%22%2F%3E%3C%2Fsvg%3E);
121
+ top: 8%;
122
+ bottom: 4%;
123
+ }
93
124
  trix-toolbar .trix-button--icon-bold::before {
94
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M15.6%2011.8c1-.7%201.6-1.8%201.6-2.8a4%204%200%200%200-4-4H7v14h7c2.1%200%203.7-1.7%203.7-3.8%200-1.5-.8-2.8-2.1-3.4zM10%207.5h3a1.5%201.5%200%201%201%200%203h-3v-3zm3.5%209H10v-3h3.5a1.5%201.5%200%201%201%200%203z%22%2F%3E%3C%2Fsvg%3E); }
125
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M15.6%2011.8c1-.7%201.6-1.8%201.6-2.8a4%204%200%200%200-4-4H7v14h7c2.1%200%203.7-1.7%203.7-3.8%200-1.5-.8-2.8-2.1-3.4zM10%207.5h3a1.5%201.5%200%201%201%200%203h-3v-3zm3.5%209H10v-3h3.5a1.5%201.5%200%201%201%200%203z%22%2F%3E%3C%2Fsvg%3E);
126
+ }
95
127
  trix-toolbar .trix-button--icon-italic::before {
96
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10%205v3h2.2l-3.4%208H6v3h8v-3h-2.2l3.4-8H18V5h-8z%22%2F%3E%3C%2Fsvg%3E); }
128
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10%205v3h2.2l-3.4%208H6v3h8v-3h-2.2l3.4-8H18V5h-8z%22%2F%3E%3C%2Fsvg%3E);
129
+ }
97
130
  trix-toolbar .trix-button--icon-link::before {
98
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M9.88%2013.7a4.3%204.3%200%200%201%200-6.07l3.37-3.37a4.26%204.26%200%200%201%206.07%200%204.3%204.3%200%200%201%200%206.06l-1.96%201.72a.91.91%200%201%201-1.3-1.3l1.97-1.71a2.46%202.46%200%200%200-3.48-3.48l-3.38%203.37a2.46%202.46%200%200%200%200%203.48.91.91%200%201%201-1.3%201.3z%22%2F%3E%3Cpath%20d%3D%22M4.25%2019.46a4.3%204.3%200%200%201%200-6.07l1.93-1.9a.91.91%200%201%201%201.3%201.3l-1.93%201.9a2.46%202.46%200%200%200%203.48%203.48l3.37-3.38c.96-.96.96-2.52%200-3.48a.91.91%200%201%201%201.3-1.3%204.3%204.3%200%200%201%200%206.07l-3.38%203.38a4.26%204.26%200%200%201-6.07%200z%22%2F%3E%3C%2Fsvg%3E); }
131
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M9.88%2013.7a4.3%204.3%200%200%201%200-6.07l3.37-3.37a4.26%204.26%200%200%201%206.07%200%204.3%204.3%200%200%201%200%206.06l-1.96%201.72a.91.91%200%201%201-1.3-1.3l1.97-1.71a2.46%202.46%200%200%200-3.48-3.48l-3.38%203.37a2.46%202.46%200%200%200%200%203.48.91.91%200%201%201-1.3%201.3z%22%2F%3E%3Cpath%20d%3D%22M4.25%2019.46a4.3%204.3%200%200%201%200-6.07l1.93-1.9a.91.91%200%201%201%201.3%201.3l-1.93%201.9a2.46%202.46%200%200%200%203.48%203.48l3.37-3.38c.96-.96.96-2.52%200-3.48a.91.91%200%201%201%201.3-1.3%204.3%204.3%200%200%201%200%206.07l-3.38%203.38a4.26%204.26%200%200%201-6.07%200z%22%2F%3E%3C%2Fsvg%3E);
132
+ }
99
133
  trix-toolbar .trix-button--icon-strike::before {
100
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.73%2014l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5%200%20.3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52%2013.52%200%200%201%207%2014.95v3.37a10.64%2010.64%200%200%200%204.84.88c1.26%200%202.35-.19%203.28-.56.93-.37%201.64-.9%202.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1%200-1.29.52-2.3%201.58-3.02%201.05-.72%202.5-1.08%204.34-1.08%201.62%200%203.28.34%204.97%201l-1.3%202.93c-1.47-.6-2.73-.9-3.8-.9-.55%200-.96.08-1.2.26-.26.17-.38.38-.38.64%200%20.27.16.52.48.74.17.12.53.3%201.05.53H7.23zM3%2013h18v-2H3v2z%22%2F%3E%3C%2Fsvg%3E); }
134
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.73%2014l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5%200%20.3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52%2013.52%200%200%201%207%2014.95v3.37a10.64%2010.64%200%200%200%204.84.88c1.26%200%202.35-.19%203.28-.56.93-.37%201.64-.9%202.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1%200-1.29.52-2.3%201.58-3.02%201.05-.72%202.5-1.08%204.34-1.08%201.62%200%203.28.34%204.97%201l-1.3%202.93c-1.47-.6-2.73-.9-3.8-.9-.55%200-.96.08-1.2.26-.26.17-.38.38-.38.64%200%20.27.16.52.48.74.17.12.53.3%201.05.53H7.23zM3%2013h18v-2H3v2z%22%2F%3E%3C%2Fsvg%3E);
135
+ }
101
136
  trix-toolbar .trix-button--icon-quote::before {
102
- background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M6%2017h3l2-4V7H5v6h3zm8%200h3l2-4V7h-6v6h3z%22%2F%3E%3C%2Fsvg%3E); }
137
+ background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M6%2017h3l2-4V7H5v6h3zm8%200h3l2-4V7h-6v6h3z%22%2F%3E%3C%2Fsvg%3E);
138
+ }
103
139
  trix-toolbar .trix-button--icon-heading-1::before {
104
- background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12%209v3H9v7H6v-7H3V9h9zM8%204h14v3h-6v12h-3V7H8V4z%22%2F%3E%3C%2Fsvg%3E); }
140
+ background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12%209v3H9v7H6v-7H3V9h9zM8%204h14v3h-6v12h-3V7H8V4z%22%2F%3E%3C%2Fsvg%3E);
141
+ }
105
142
  trix-toolbar .trix-button--icon-code::before {
106
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.2%2012L15%2015.2l1.4%201.4L21%2012l-4.6-4.6L15%208.8l3.2%203.2zM5.8%2012L9%208.8%207.6%207.4%203%2012l4.6%204.6L9%2015.2%205.8%2012z%22%2F%3E%3C%2Fsvg%3E); }
143
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.2%2012L15%2015.2l1.4%201.4L21%2012l-4.6-4.6L15%208.8l3.2%203.2zM5.8%2012L9%208.8%207.6%207.4%203%2012l4.6%204.6L9%2015.2%205.8%2012z%22%2F%3E%3C%2Fsvg%3E);
144
+ }
107
145
  trix-toolbar .trix-button--icon-bullet-list::before {
108
- background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%204a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm4%203h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z%22%2F%3E%3C%2Fsvg%3E); }
146
+ background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%204a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm4%203h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z%22%2F%3E%3C%2Fsvg%3E);
147
+ }
109
148
  trix-toolbar .trix-button--icon-number-list::before {
110
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M2%2017h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1%203h1.8L2%2013.1v.9h3v-1H3.2L5%2010.9V10H2v1zm5-6v2h14V5H7zm0%2014h14v-2H7v2zm0-6h14v-2H7v2z%22%2F%3E%3C%2Fsvg%3E); }
149
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M2%2017h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1%203h1.8L2%2013.1v.9h3v-1H3.2L5%2010.9V10H2v1zm5-6v2h14V5H7zm0%2014h14v-2H7v2zm0-6h14v-2H7v2z%22%2F%3E%3C%2Fsvg%3E);
150
+ }
111
151
  trix-toolbar .trix-button--icon-undo::before {
112
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.5%208c-2.6%200-5%201-6.9%202.6L2%207v9h9l-3.6-3.6A8%208%200%200%201%2020%2016l2.4-.8a10.5%2010.5%200%200%200-10-7.2z%22%2F%3E%3C%2Fsvg%3E); }
152
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.5%208c-2.6%200-5%201-6.9%202.6L2%207v9h9l-3.6-3.6A8%208%200%200%201%2020%2016l2.4-.8a10.5%2010.5%200%200%200-10-7.2z%22%2F%3E%3C%2Fsvg%3E);
153
+ }
113
154
  trix-toolbar .trix-button--icon-redo::before {
114
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.4%2010.6a10.5%2010.5%200%200%200-16.9%204.6L4%2016a8%208%200%200%201%2012.7-3.6L13%2016h9V7l-3.6%203.6z%22%2F%3E%3C%2Fsvg%3E); }
155
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.4%2010.6a10.5%2010.5%200%200%200-16.9%204.6L4%2016a8%208%200%200%201%2012.7-3.6L13%2016h9V7l-3.6%203.6z%22%2F%3E%3C%2Fsvg%3E);
156
+ }
115
157
  trix-toolbar .trix-button--icon-decrease-nesting-level::before {
116
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8%202.9L6%2014.2%204%2012l2-2-1.4-1.5L1%2012l.7.7zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E); }
158
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8%202.9L6%2014.2%204%2012l2-2-1.4-1.5L1%2012l.7.7zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
159
+ }
117
160
  trix-toolbar .trix-button--icon-increase-nesting-level::before {
118
- background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1%2014.2l1.4%201.4L6%2012l-.7-.7-2.8-2.8L1%209.9%203.1%2012zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E); }
161
+ background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1%2014.2l1.4%201.4L6%2012l-.7-.7-2.8-2.8L1%209.9%203.1%2012zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
162
+ }
119
163
  trix-toolbar .trix-dialogs {
120
- position: relative; }
164
+ position: relative;
165
+ }
121
166
  trix-toolbar .trix-dialog {
122
167
  position: absolute;
123
168
  top: 0;
@@ -129,7 +174,8 @@ trix-toolbar .trix-dialog {
129
174
  box-shadow: 0 0.3em 1em #ccc;
130
175
  border-top: 2px solid #888;
131
176
  border-radius: 5px;
132
- z-index: 5; }
177
+ z-index: 5;
178
+ }
133
179
  trix-toolbar .trix-input--dialog {
134
180
  font-size: inherit;
135
181
  font-weight: normal;
@@ -141,52 +187,72 @@ trix-toolbar .trix-input--dialog {
141
187
  box-shadow: none;
142
188
  outline: none;
143
189
  -webkit-appearance: none;
144
- -moz-appearance: none; }
145
- trix-toolbar .trix-input--dialog.validate:invalid {
146
- box-shadow: #F00 0px 0px 1.5px 1px; }
190
+ -moz-appearance: none;
191
+ }
192
+ trix-toolbar .trix-input--dialog.validate:invalid {
193
+ box-shadow: #f00 0px 0px 1.5px 1px;
194
+ }
147
195
  trix-toolbar .trix-button--dialog {
148
196
  font-size: inherit;
149
197
  padding: 0.5em;
150
- border-bottom: none; }
198
+ border-bottom: none;
199
+ }
151
200
  trix-toolbar .trix-dialog--link {
152
- max-width: 600px; }
201
+ max-width: 600px;
202
+ }
153
203
  trix-toolbar .trix-dialog__link-fields {
154
204
  display: flex;
155
- align-items: baseline; }
156
- trix-toolbar .trix-dialog__link-fields .trix-input {
157
- flex: 1; }
158
- trix-toolbar .trix-dialog__link-fields .trix-button-group {
159
- flex: 0 0 content;
160
- margin: 0; }
205
+ align-items: baseline;
206
+ }
207
+ trix-toolbar .trix-dialog__link-fields .trix-input {
208
+ flex: 1;
209
+ }
210
+ trix-toolbar .trix-dialog__link-fields .trix-button-group {
211
+ flex: 0 0 content;
212
+ margin: 0;
213
+ }
161
214
  trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
162
215
  -webkit-user-select: none;
163
216
  -moz-user-select: none;
164
217
  -ms-user-select: none;
165
- user-select: none; }
218
+ user-select: none;
219
+ }
166
220
 
167
221
  trix-editor [data-trix-mutable]::-moz-selection,
168
- trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
169
- background: none; }
222
+ trix-editor [data-trix-cursor-target]::-moz-selection,
223
+ trix-editor [data-trix-mutable] ::-moz-selection {
224
+ background: none;
225
+ }
170
226
  trix-editor [data-trix-mutable]::selection,
171
- trix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {
172
- background: none; }
227
+ trix-editor [data-trix-cursor-target]::selection,
228
+ trix-editor [data-trix-mutable] ::selection {
229
+ background: none;
230
+ }
173
231
 
174
- trix-editor [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
175
- background: highlight; }
232
+ trix-editor
233
+ [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
234
+ background: highlight;
235
+ }
176
236
  trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
177
- background: highlight; }
237
+ background: highlight;
238
+ }
178
239
 
179
240
  trix-editor [data-trix-mutable].attachment.attachment--file {
180
241
  box-shadow: 0 0 0 2px highlight;
181
- border-color: transparent; }
242
+ border-color: transparent;
243
+ }
182
244
  trix-editor [data-trix-mutable].attachment img {
183
- box-shadow: 0 0 0 2px highlight; }
245
+ box-shadow: 0 0 0 2px highlight;
246
+ }
184
247
  trix-editor .attachment {
185
- position: relative; }
186
- trix-editor .attachment:hover {
187
- cursor: default; }
248
+ position: relative;
249
+ }
250
+ trix-editor .attachment:hover {
251
+ cursor: default;
252
+ }
188
253
  trix-editor .attachment--preview .attachment__caption:hover {
189
- cursor: text; }
254
+ cursor: text;
255
+ }
190
256
  trix-editor .attachment__progress {
191
257
  position: absolute;
192
258
  z-index: 1;
@@ -195,9 +261,11 @@ trix-editor .attachment__progress {
195
261
  left: 5%;
196
262
  width: 90%;
197
263
  opacity: 0.9;
198
- transition: opacity 200ms ease-in; }
199
- trix-editor .attachment__progress[value="100"] {
200
- opacity: 0; }
264
+ transition: opacity 200ms ease-in;
265
+ }
266
+ trix-editor .attachment__progress[value="100"] {
267
+ opacity: 0;
268
+ }
201
269
  trix-editor .attachment__caption-editor {
202
270
  display: inline-block;
203
271
  width: 100%;
@@ -212,16 +280,19 @@ trix-editor .attachment__caption-editor {
212
280
  border: none;
213
281
  outline: none;
214
282
  -webkit-appearance: none;
215
- -moz-appearance: none; }
283
+ -moz-appearance: none;
284
+ }
216
285
  trix-editor .attachment__toolbar {
217
286
  position: absolute;
218
287
  z-index: 1;
219
288
  top: -0.9em;
220
289
  left: 0;
221
290
  width: 100%;
222
- text-align: center; }
291
+ text-align: center;
292
+ }
223
293
  trix-editor .trix-button-group {
224
- display: inline-flex; }
294
+ display: inline-flex;
295
+ }
225
296
  trix-editor .trix-button {
226
297
  position: relative;
227
298
  float: left;
@@ -233,13 +304,17 @@ trix-editor .trix-button {
233
304
  outline: none;
234
305
  border: none;
235
306
  border-radius: 0;
236
- background: transparent; }
237
- trix-editor .trix-button:not(:first-child) {
238
- border-left: 1px solid #ccc; }
239
- trix-editor .trix-button.trix-active {
240
- background: #cbeefa; }
241
- trix-editor .trix-button:not(:disabled) {
242
- cursor: pointer; }
307
+ background: transparent;
308
+ }
309
+ trix-editor .trix-button:not(:first-child) {
310
+ border-left: 1px solid #ccc;
311
+ }
312
+ trix-editor .trix-button.trix-active {
313
+ background: #cbeefa;
314
+ }
315
+ trix-editor .trix-button:not(:disabled) {
316
+ cursor: pointer;
317
+ }
243
318
  trix-editor .trix-button--remove {
244
319
  text-indent: -9999px;
245
320
  display: inline-block;
@@ -251,26 +326,31 @@ trix-editor .trix-button--remove {
251
326
  border-radius: 50%;
252
327
  background-color: #fff;
253
328
  border: 2px solid highlight;
254
- box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25); }
255
- trix-editor .trix-button--remove::before {
256
- display: inline-block;
257
- position: absolute;
258
- top: 0;
259
- right: 0;
260
- bottom: 0;
261
- left: 0;
262
- opacity: 0.7;
263
- content: "";
264
- background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.4L17.6%205%2012%2010.6%206.4%205%205%206.4l5.6%205.6L5%2017.6%206.4%2019l5.6-5.6%205.6%205.6%201.4-1.4-5.6-5.6z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
265
- background-position: center;
266
- background-repeat: no-repeat;
267
- background-size: 90%; }
268
- trix-editor .trix-button--remove:hover {
269
- border-color: #333; }
270
- trix-editor .trix-button--remove:hover::before {
271
- opacity: 1; }
329
+ box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
330
+ }
331
+ trix-editor .trix-button--remove::before {
332
+ display: inline-block;
333
+ position: absolute;
334
+ top: 0;
335
+ right: 0;
336
+ bottom: 0;
337
+ left: 0;
338
+ opacity: 0.7;
339
+ content: "";
340
+ background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.4L17.6%205%2012%2010.6%206.4%205%205%206.4l5.6%205.6L5%2017.6%206.4%2019l5.6-5.6%205.6%205.6%201.4-1.4-5.6-5.6z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
341
+ background-position: center;
342
+ background-repeat: no-repeat;
343
+ background-size: 90%;
344
+ }
345
+ trix-editor .trix-button--remove:hover {
346
+ border-color: #333;
347
+ }
348
+ trix-editor .trix-button--remove:hover::before {
349
+ opacity: 1;
350
+ }
272
351
  trix-editor .attachment__metadata-container {
273
- position: relative; }
352
+ position: relative;
353
+ }
274
354
  trix-editor .attachment__metadata {
275
355
  position: absolute;
276
356
  left: 50%;
@@ -281,89 +361,118 @@ trix-editor .attachment__metadata {
281
361
  font-size: 0.8em;
282
362
  color: #fff;
283
363
  background-color: rgba(0, 0, 0, 0.7);
284
- border-radius: 3px; }
285
- trix-editor .attachment__metadata .attachment__name {
286
- display: inline-block;
287
- max-width: 100%;
288
- vertical-align: bottom;
289
- overflow: hidden;
290
- text-overflow: ellipsis;
291
- white-space: nowrap; }
292
- trix-editor .attachment__metadata .attachment__size {
293
- margin-left: 0.2em;
294
- white-space: nowrap; }
364
+ border-radius: 3px;
365
+ }
366
+ trix-editor .attachment__metadata .attachment__name {
367
+ display: inline-block;
368
+ max-width: 100%;
369
+ vertical-align: bottom;
370
+ overflow: hidden;
371
+ text-overflow: ellipsis;
372
+ white-space: nowrap;
373
+ }
374
+ trix-editor .attachment__metadata .attachment__size {
375
+ margin-left: 0.2em;
376
+ white-space: nowrap;
377
+ }
295
378
  @charset "UTF-8";
296
379
  .trix-content {
297
- line-height: 1.5; }
298
- .trix-content * {
299
- box-sizing: border-box; }
300
- .trix-content h1 {
301
- font-size: 1.2em;
302
- line-height: 1.2;
303
- margin: 0; }
304
- .trix-content blockquote {
305
- margin: 0 0 0 0.3em;
306
- padding: 0 0 0 0.6em;
307
- border-left: 0.3em solid #ccc; }
308
- .trix-content pre {
309
- display: inline-block;
310
- width: 100%;
311
- vertical-align: top;
312
- font-family: monospace;
313
- font-size: 0.9em;
314
- margin: 0;
315
- padding: 0.5em;
316
- white-space: pre;
317
- background-color: #eee;
318
- overflow-x: auto; }
319
- .trix-content ul, .trix-content ol, .trix-content li {
320
- margin: 0;
321
- padding: 0; }
322
- .trix-content ul li, .trix-content ol li, .trix-content li li {
323
- margin-left: 1em; }
324
- .trix-content img {
325
- max-width: 100%;
326
- height: auto; }
327
- .trix-content .attachment {
328
- display: inline-block;
329
- position: relative;
330
- max-width: 100%;
331
- margin: 0;
332
- padding: 0; }
333
- .trix-content .attachment a {
334
- color: inherit;
335
- text-decoration: none; }
336
- .trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
337
- color: inherit; }
338
- .trix-content .attachment__caption {
339
- padding: 0;
340
- text-align: center; }
341
- .trix-content .attachment__caption .attachment__name + .attachment__size::before {
342
- content: ' · '; }
343
- .trix-content .attachment--preview {
344
- width: 100%;
345
- text-align: center; }
346
- .trix-content .attachment--preview .attachment__caption {
347
- color: #666;
348
- font-size: 0.9em;
349
- line-height: 1.2; }
350
- .trix-content .attachment--file {
351
- color: #333;
352
- line-height: 1;
353
- margin: 0 2px 2px 0;
354
- padding: 0.4em 1em;
355
- border: 1px solid #bbb;
356
- border-radius: 5px; }
357
- .trix-content .attachment-gallery {
358
- display: flex;
359
- flex-wrap: wrap;
360
- position: relative;
361
- margin: 0;
362
- padding: 0; }
363
- .trix-content .attachment-gallery .attachment {
364
- flex: 1 0 33%;
365
- padding: 0 0.5em;
366
- max-width: 33%; }
367
- .trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
368
- flex-basis: 50%;
369
- max-width: 50%; }
380
+ line-height: 1.5;
381
+ }
382
+ .trix-content * {
383
+ box-sizing: border-box;
384
+ margin: 0;
385
+ padding: 0;
386
+ }
387
+ .trix-content h1 {
388
+ font-size: 1.2em;
389
+ line-height: 1.2;
390
+ }
391
+ .trix-content blockquote {
392
+ border: 0 solid #ccc;
393
+ border-left-width: 0.3em;
394
+ margin-left: 0.3em;
395
+ padding-left: 0.6em;
396
+ }
397
+ .trix-content [dir="rtl"] blockquote,
398
+ .trix-content blockquote[dir="rtl"] {
399
+ border-width: 0;
400
+ border-right-width: 0.3em;
401
+ margin-right: 0.3em;
402
+ padding-right: 0.6em;
403
+ }
404
+ .trix-content li {
405
+ margin-left: 1em;
406
+ }
407
+ .trix-content [dir="rtl"] li {
408
+ margin-right: 1em;
409
+ }
410
+ .trix-content pre {
411
+ display: inline-block;
412
+ width: 100%;
413
+ vertical-align: top;
414
+ font-family: monospace;
415
+ font-size: 0.9em;
416
+ padding: 0.5em;
417
+ white-space: pre;
418
+ background-color: #eee;
419
+ overflow-x: auto;
420
+ }
421
+ .trix-content img {
422
+ max-width: 100%;
423
+ height: auto;
424
+ }
425
+ .trix-content .attachment {
426
+ display: inline-block;
427
+ position: relative;
428
+ max-width: 100%;
429
+ }
430
+ .trix-content .attachment a {
431
+ color: inherit;
432
+ text-decoration: none;
433
+ }
434
+ .trix-content .attachment a:hover,
435
+ .trix-content .attachment a:visited:hover {
436
+ color: inherit;
437
+ }
438
+ .trix-content .attachment__caption {
439
+ text-align: center;
440
+ }
441
+ .trix-content
442
+ .attachment__caption
443
+ .attachment__name
444
+ + .attachment__size::before {
445
+ content: " · ";
446
+ }
447
+ .trix-content .attachment--preview {
448
+ width: 100%;
449
+ text-align: center;
450
+ }
451
+ .trix-content .attachment--preview .attachment__caption {
452
+ color: #666;
453
+ font-size: 0.9em;
454
+ line-height: 1.2;
455
+ }
456
+ .trix-content .attachment--file {
457
+ color: #333;
458
+ line-height: 1;
459
+ margin: 0 2px 2px 2px;
460
+ padding: 0.4em 1em;
461
+ border: 1px solid #bbb;
462
+ border-radius: 5px;
463
+ }
464
+ .trix-content .attachment-gallery {
465
+ display: flex;
466
+ flex-wrap: wrap;
467
+ position: relative;
468
+ }
469
+ .trix-content .attachment-gallery .attachment {
470
+ flex: 1 0 33%;
471
+ padding: 0 0.5em;
472
+ max-width: 33%;
473
+ }
474
+ .trix-content .attachment-gallery.attachment-gallery--2 .attachment,
475
+ .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
476
+ flex-basis: 50%;
477
+ max-width: 50%;
478
+ }