dante-editor 0.0.15 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +49 -10
  4. data/app/assets/fonts/dante/dante.eot +0 -0
  5. data/app/assets/fonts/dante/dante.svg +9 -5
  6. data/app/assets/fonts/dante/dante.ttf +0 -0
  7. data/app/assets/fonts/dante/dante.woff +0 -0
  8. data/app/assets/javascripts/dante/behavior.js.coffee +2 -0
  9. data/app/assets/javascripts/dante/behaviors/image.js.coffee +56 -0
  10. data/app/assets/javascripts/dante/behaviors/list.js.coffee +150 -0
  11. data/app/assets/javascripts/dante/behaviors/save.js.coffee +40 -0
  12. data/app/assets/javascripts/dante/behaviors/suggest.js.coffee +118 -0
  13. data/app/assets/javascripts/dante/editor.js.coffee +110 -228
  14. data/app/assets/javascripts/dante/popover.js.coffee +350 -11
  15. data/app/assets/javascripts/dante/tooltip_widgets/uploader.js.coffee +2 -2
  16. data/app/assets/javascripts/dante.js +5 -0
  17. data/app/assets/stylesheets/dante/_blame.scss +209 -0
  18. data/app/assets/stylesheets/dante/_caption.scss +14 -0
  19. data/app/assets/stylesheets/dante/_icons.scss +10 -5
  20. data/app/assets/stylesheets/dante/_menu.scss +7 -7
  21. data/app/assets/stylesheets/dante/_popover.scss +122 -44
  22. data/app/assets/stylesheets/dante/_utilities.scss +5 -1
  23. data/app/assets/stylesheets/dante/_variables.scss +7 -3
  24. data/app/assets/stylesheets/dante.scss +2 -0
  25. data/config.rb +5 -4
  26. data/dist/css/dante-editor.css +246 -44
  27. data/dist/fonts/dante/dante.eot +0 -0
  28. data/dist/fonts/dante/dante.svg +9 -5
  29. data/dist/fonts/dante/dante.ttf +0 -0
  30. data/dist/fonts/dante/dante.woff +0 -0
  31. data/dist/js/dante-editor.js +1015 -283
  32. data/lib/dante-editor/version.rb +1 -1
  33. data/source/api/cristian.json.erb +8 -0
  34. data/source/api/miguel.json.erb +8 -0
  35. data/source/api/resource.json.erb +8 -0
  36. data/source/api/save.json.erb +1 -0
  37. data/source/api/suggest.json.erb +22 -0
  38. data/source/assets/images/dante-demo.png +0 -0
  39. data/source/icons/image-center.svg +12 -0
  40. data/source/icons/image-fill.svg +11 -0
  41. data/source/icons/image-left.svg +15 -0
  42. data/source/icons/image-wide.svg +12 -0
  43. data/source/index.html.erb +6 -0
  44. data/source/partials/_readme.markdown +2 -2
  45. metadata +18 -2
@@ -28,6 +28,9 @@
28
28
  animation: spinner .6s linear infinite;
29
29
  -webkit-animation: spinner .6s linear infinite; }
30
30
 
31
+ .hidden {
32
+ display: none !important; }
33
+
31
34
  .notesSource {
32
35
  padding: 0;
33
36
  margin: 0;
@@ -244,6 +247,18 @@
244
247
  -webkit-font-smoothing: antialiased;
245
248
  -moz-osx-font-smoothing: grayscale; }
246
249
 
250
+ .icon-image-center:before {
251
+ content: "\e900"; }
252
+
253
+ .icon-image-fill:before {
254
+ content: "\e901"; }
255
+
256
+ .icon-image-left:before {
257
+ content: "\e902"; }
258
+
259
+ .icon-image-wide:before {
260
+ content: "\e903"; }
261
+
247
262
  .icon-video:before {
248
263
  content: "\e600"; }
249
264
 
@@ -267,12 +282,12 @@
267
282
  left: 0;
268
283
  display: block;
269
284
  white-space: nowrap;
270
- height: 45px;
271
- background: linear-gradient(to bottom, #262626, #333) repeat scroll 0 0 #333;
272
- border: 1px solid #262626;
285
+ height: 42px;
286
+ background: linear-gradient(to bottom, #333, #262626) repeat scroll 0 0 #333;
287
+ border: 0px solid #262626;
273
288
  border-radius: 5px;
274
289
  box-shadow: 1px 2px 3px -2px #222; }
275
- .dante-menu:after, .dante-menu:before {
290
+ .dante-menu:after {
276
291
  content: "";
277
292
  height: 0;
278
293
  width: 0;
@@ -282,11 +297,8 @@
282
297
  border: 8px solid transparent;
283
298
  margin-left: -4px; }
284
299
  .dante-menu:after {
285
- border-top-color: #333;
286
- bottom: -15px; }
287
- .dante-menu:before {
288
300
  border-top-color: #262626;
289
- bottom: -16px; }
301
+ bottom: -15px; }
290
302
 
291
303
  .dante-menu--active {
292
304
  display: inline-block;
@@ -318,8 +330,8 @@
318
330
  color: #FFFFFF;
319
331
  cursor: pointer;
320
332
  font-size: 16px;
321
- line-height: 43px;
322
- height: 43px;
333
+ line-height: 42px;
334
+ height: 42px;
323
335
  -webkit-user-select: none;
324
336
  -moz-user-select: none;
325
337
  -ms-user-select: none;
@@ -466,41 +478,72 @@
466
478
  border-color: rgba(0, 0, 0, 0.9);
467
479
  color: rgba(0, 0, 0, 0.9); }
468
480
 
469
- .popover {
481
+ .dante-popover {
470
482
  overflow: hidden;
471
483
  position: absolute;
472
484
  z-index: 900;
473
485
  visibility: visible;
474
486
  font-size: 12px;
475
487
  text-align: center;
476
- opacity: 0;
477
488
  pointer-events: auto;
478
489
  padding: 15px;
479
490
  font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
480
491
  letter-spacing: -0.02em;
481
492
  font-weight: 400;
482
493
  font-style: normal;
483
- line-height: 1.4; }
484
- .popover.is-active {
485
- opacity: 1; }
494
+ line-height: 1.4;
495
+ opacity: 0; }
496
+ .dante-popover.is-active {
497
+ opacity: 1; }
498
+ .dante-popover .popover-inner {
499
+ background: #fff;
500
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.35); }
501
+
502
+ .popover.is-active {
503
+ visibility: visible; }
486
504
 
487
505
  .popover-inner {
488
506
  position: relative;
489
- max-width: 280px;
490
- border-radius: 4px;
507
+ max-width: 300px;
508
+ border-radius: 5px;
491
509
  padding: 8px; }
492
- .popover-inner a {
493
- color: inherit;
494
- text-decoration: none; }
510
+ .popover-inner a {
511
+ color: inherit;
512
+ text-decoration: none; }
495
513
 
496
514
  .popover--tooltip {
497
515
  pointer-events: none; }
516
+ .popover--tooltip .popover-inner {
517
+ background: #333;
518
+ border-radius: 4px;
519
+ color: #fff; }
498
520
 
499
- .popover--linkTooltip {
521
+ .popover--Linktooltip {
500
522
  pointer-events: auto;
501
523
  z-index: 300;
502
524
  word-break: break-word;
503
525
  word-wrap: break-word; }
526
+ .popover--Linktooltip .popover-inner {
527
+ padding: 8px 10px;
528
+ font-size: 12px; }
529
+
530
+ .popover--Aligntooltip .popover-inner {
531
+ padding: 0;
532
+ background: #333;
533
+ color: #fff; }
534
+
535
+ .popover--typeahead .popover-inner {
536
+ position: relative;
537
+ padding: 14px;
538
+ border-radius: 4px; }
539
+ .popover--typeahead .popover-inner ul {
540
+ padding-left: 0px; }
541
+
542
+ .popover.popover--maxWidth360 .popover-inner {
543
+ max-width: 360px; }
544
+
545
+ .popover:not(.popover--flexible) .popover-inner {
546
+ max-width: 280px; }
504
547
 
505
548
  /*
506
549
  .popover.is-withTransition {
@@ -514,71 +557,60 @@
514
557
  transition:opacity 0 ease;
515
558
  }
516
559
  */
517
- .popover-inner {
518
- background-color: rgba(0, 0, 0, 0.8);
519
- color: #fff; }
520
-
521
560
  .popover-arrow {
522
561
  position: absolute; }
523
562
 
524
563
  .popover-arrow:after {
525
- background-color: rgba(0, 0, 0, 0.8); }
564
+ background-color: #333; }
526
565
 
527
566
  .popover--top .popover-arrow,
528
567
  .popover--bottom .popover-arrow {
529
568
  left: 50%;
530
- margin-left: -7px; }
569
+ margin-left: -6px; }
531
570
 
532
571
  .popover--left .popover-arrow,
533
572
  .popover--right .popover-arrow {
534
573
  top: 50%;
535
- margin-top: -7px; }
536
-
537
- .popover--top .popover-arrow {
538
- bottom: 1px;
539
- clip: rect(0 18px 18px 4px); }
574
+ margin-top: -6px; }
540
575
 
541
576
  .popover--right .popover-arrow {
542
- left: 1px;
543
- clip: rect(-4px 14px 18px 0); }
577
+ left: 1px; }
544
578
 
545
579
  .popover--bottom .popover-arrow {
546
- top: 1px;
547
- clip: rect(0 18px 14px -1px); }
580
+ top: 1px; }
548
581
 
549
582
  .popover--left .popover-arrow {
550
- right: 1px;
551
- clip: rect(-4px 14px 18px 0); }
583
+ right: 1px; }
552
584
 
553
585
  .popover-arrow:after {
554
586
  content: '';
555
587
  display: block;
556
- width: 14px;
557
- height: 14px; }
588
+ width: 12px;
589
+ height: 12px; }
558
590
 
559
591
  .popover--top .popover-arrow:after {
560
592
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
561
593
  -ms-transform: rotate(45deg) translate(-5px, -5px);
562
594
  transform: rotate(45deg) translate(-5px, -5px);
563
- box-shadow: 1px 1px 1px -1px rgba(0, 0, 0, 0.8); }
595
+ box-shadow: 1px 1px 1px -1px #333; }
564
596
 
565
597
  .popover--right .popover-arrow:after {
566
598
  -webkit-transform: rotate(45deg) translate(6px, -6px);
567
599
  -ms-transform: rotate(45deg) translate(6px, -6px);
568
600
  transform: rotate(45deg) translate(6px, -6px);
569
- box-shadow: -1px 1px 1px -1px rgba(0, 0, 0, 0.8); }
601
+ box-shadow: -1px 1px 1px -1px #333; }
570
602
 
571
603
  .popover--bottom .popover-arrow:after {
572
604
  -webkit-transform: rotate(45deg) translate(6px, 6px);
573
605
  -ms-transform: rotate(45deg) translate(6px, 6px);
574
606
  transform: rotate(45deg) translate(6px, 6px);
575
- box-shadow: -1px -1px 1px -1px rgba(0, 0, 0, 0.44); }
607
+ box-shadow: -1px -1px 1px -1px #333; }
576
608
 
577
609
  .popover--left .popover-arrow:after {
578
610
  -webkit-transform: rotate(45deg) translate(-6px, 6px);
579
611
  -ms-transform: rotate(45deg) translate(-6px, 6px);
580
612
  transform: rotate(45deg) translate(-6px, 6px);
581
- box-shadow: 1px -1px 1px -1px rgba(0, 0, 0, 0.8); }
613
+ box-shadow: 1px -1px 1px -1px #333; }
582
614
 
583
615
  .graf--h2,
584
616
  .graf--h3,
@@ -849,6 +881,16 @@ p[data-align="center"],
849
881
 
850
882
  .imageCaption:before {
851
883
  display: none; } }
884
+ figure.graf--layoutOutsetLeft .imageCaption,
885
+ figure.graf--layoutOutsetLeft .postField--outsetCenterImage > .imageCaption {
886
+ position: relative;
887
+ width: 100%;
888
+ text-align: center;
889
+ left: 0;
890
+ margin-top: 10px; }
891
+ figure.graf--layoutOutsetLeft .imageCaption:before {
892
+ display: none; }
893
+
852
894
  figure.is-defaultValue .imageCaption,
853
895
  .graf--sectionCaption.is-defaultValue {
854
896
  display: none; }
@@ -961,6 +1003,166 @@ section.is-backgrounded + section > .section-divider {
961
1003
  font-weight: 400;
962
1004
  letter-spacing: -0.02em; }
963
1005
 
1006
+ a[rel=token], .markup--query {
1007
+ color: #00ab6b;
1008
+ text-decoration: none;
1009
+ background-image: none !important; }
1010
+
1011
+ .typeahead--mention {
1012
+ padding-top: 10px; }
1013
+
1014
+ .typeahead .popover-inner {
1015
+ padding: 0;
1016
+ overflow: hidden;
1017
+ min-width: 100px; }
1018
+
1019
+ .typeahead .typeahead-item:first-child {
1020
+ padding-top: 7px; }
1021
+
1022
+ .typeahead--mention .typeahead-item {
1023
+ padding: 6px 15px;
1024
+ font-size: 13px; }
1025
+
1026
+ .typeahead-item.is-active, .typeahead-item:hover {
1027
+ background: #02b875;
1028
+ color: #fff; }
1029
+
1030
+ .typeahead .typeahead-item {
1031
+ cursor: pointer;
1032
+ padding: 5px 10px;
1033
+ line-height: 2;
1034
+ font-size: 12px;
1035
+ text-align: left;
1036
+ white-space: nowrap;
1037
+ text-overflow: ellipsis;
1038
+ overflow: hidden; }
1039
+
1040
+ .typeahead .dante-avatar {
1041
+ margin: 0 6px 0 -2px; }
1042
+
1043
+ .avatar-image--icon {
1044
+ width: 32px;
1045
+ height: 32px; }
1046
+
1047
+ .avatar-image {
1048
+ display: inline-block;
1049
+ vertical-align: middle;
1050
+ border-radius: 100%; }
1051
+
1052
+ .typeahead-item .avatar-image {
1053
+ width: 32px;
1054
+ height: 32px; }
1055
+
1056
+ .typeahead--mention .popover-arrow {
1057
+ display: none; }
1058
+
1059
+ .markup--user {
1060
+ color: #00ab6b;
1061
+ text-decoration: none; }
1062
+
1063
+ .popover--card .popover-arrow {
1064
+ top: -14px; }
1065
+ .popover--card .popover--bottom .popover-arrow:after {
1066
+ transform: rotate(45deg) translate(6px, 6px);
1067
+ box-shadow: -1px -1px 1px -1px rgba(0, 0, 0, 0.44); }
1068
+ .popover--card .popover-arrow:after {
1069
+ content: '';
1070
+ display: block;
1071
+ width: 14px;
1072
+ height: 14px;
1073
+ background: #fff; }
1074
+
1075
+ .popover--animated.is-active {
1076
+ visibility: visible;
1077
+ opacity: 1;
1078
+ transition: visibility 0s linear 0s,opacity .2s 0s; }
1079
+
1080
+ .popover.is-active {
1081
+ visibility: visible; }
1082
+
1083
+ .popover--animated {
1084
+ visibility: hidden;
1085
+ opacity: 0;
1086
+ transition: visibility 0s linear .2s,opacity .2s 0s; }
1087
+
1088
+ .popoverCard {
1089
+ text-align: left; }
1090
+
1091
+ .popoverCard-meta {
1092
+ width: 192px; }
1093
+
1094
+ .u-floatLeft {
1095
+ float: left !important; }
1096
+
1097
+ .u-floatRight {
1098
+ float: right !important; }
1099
+
1100
+ .popoverCard-title {
1101
+ font-size: 18px;
1102
+ margin-bottom: 5px;
1103
+ margin-top: 0px; }
1104
+
1105
+ .link {
1106
+ color: inherit;
1107
+ text-decoration: none;
1108
+ cursor: pointer; }
1109
+
1110
+ .popoverCard-description {
1111
+ overflow: hidden;
1112
+ color: rgba(0, 0, 0, 0.44); }
1113
+
1114
+ .u-clearfix:after {
1115
+ clear: both; }
1116
+
1117
+ .u-clearfix:after, .u-clearfix:before {
1118
+ display: table;
1119
+ content: " "; }
1120
+
1121
+ .dante-avatar {
1122
+ display: block;
1123
+ white-space: nowrap;
1124
+ overflow: hidden;
1125
+ text-overflow: ellipsis;
1126
+ line-height: normal; }
1127
+
1128
+ .avatar-image--small {
1129
+ width: 60px;
1130
+ height: 60px; }
1131
+
1132
+ .avatar-image {
1133
+ display: inline-block;
1134
+ vertical-align: middle;
1135
+ border-radius: 100%; }
1136
+
1137
+ .popoverCard-actions {
1138
+ border-top: solid 1px rgba(0, 0, 0, 0.15);
1139
+ margin-top: 10px;
1140
+ padding-top: 10px; }
1141
+
1142
+ .popoverCard-stats {
1143
+ font-size: 14px;
1144
+ line-height: 36px; }
1145
+
1146
+ .popoverCard-stat {
1147
+ margin-right: 10px;
1148
+ color: rgba(0, 0, 0, 0.44); }
1149
+
1150
+ .popoverCard-count {
1151
+ padding-left: 5px;
1152
+ color: rgba(0, 0, 0, 0.6); }
1153
+
1154
+ .graf--layoutOutsetLeft {
1155
+ margin-left: -160px; }
1156
+
1157
+ .graf--layoutOutsetLeft {
1158
+ width: 75%; }
1159
+
1160
+ .graf--layoutInsetLeft, .graf--layoutOutsetLeft {
1161
+ float: left;
1162
+ margin-right: 30px;
1163
+ padding-top: 10px;
1164
+ padding-bottom: 10px; }
1165
+
964
1166
  .debug .section-inner .is-selected {
965
1167
  outline-color: #55b6b3;
966
1168
  outline-width: thin;
Binary file
@@ -6,9 +6,13 @@
6
6
  <font id="icomoon" horiz-adv-x="1024">
7
7
  <font-face units-per-em="1024" ascent="960" descent="-64" />
8
8
  <missing-glyph horiz-adv-x="1024" />
9
- <glyph unicode="&#x20;" d="" horiz-adv-x="512" />
10
- <glyph unicode="&#xe600;" d="M256 759.559v-623.174c0-70.118 47.316-95.291 105.683-55.222l428.634 294.258c58.622 40.244 58.367 105.034 0 145.103l-428.634 294.258c-58.622 40.244-105.683 15.345-105.683-55.222zM320 766.664l426.195-293.488c30.527-20.25 29.832-31 0-51.070l-426.195-295.039v639.598z" />
11
- <glyph unicode="&#xe601;" d="M294.4 768l0.489 2.446c13.868 69.342 82.599 125.554 152.977 125.554h128.267c70.619 0 139.014-55.74 152.977-125.554l0.489-2.446h166.78c70.483 0 127.62-57.611 127.62-127.489v-449.022c0-70.41-57.249-127.489-127.62-127.489h-768.76c-70.483 0-127.62 57.611-127.62 127.489v449.022c0 70.41 57.249 127.489 127.62 127.489h166.78zM347.123 704h-218.685c-35.641 0-64.438-28.583-64.438-63.843v-448.314c0-35.279 28.85-63.843 64.438-63.843h767.124c35.641 0 64.438 28.583 64.438 63.843v448.314c0 35.279-28.85 63.843-64.438 63.843h-218.816l-13.864 65.375c-7.263 34.25-41.874 62.625-77.145 62.625h-147.627c-35.433 0-69.805-28.038-77.134-62.625l-13.853-65.375zM320 448c0-105.823 85.961-192 192-192 105.823 0 192 85.961 192 192 0 105.823-85.961 192-192 192-105.823 0-192-85.961-192-192zM384 448c0 70.692 56.815 128 128 128 70.692 0 128-56.815 128-128 0-70.692-56.815-128-128-128-70.692 0-128 56.815-128 128z" />
12
- <glyph unicode="&#xe602;" d="M544 416v-375.294c0-17.673-14.327-32-32-32s-32 14.327-32 32v375.294h-375.294c-17.673 0-32 14.327-32 32s14.327 32 32 32h375.294v375.294c0 17.673 14.327 32 32 32s32-14.327 32-32v-375.294h375.294c17.673 0 32-14.327 32-32s-14.327-32-32-32h-375.294z" />
13
- <glyph unicode="&#xe603;" d="M882.24 449.498l-235.855 234.241c-12.497 12.411-12.497 32.534 0 44.945s32.758 12.411 45.255 0l253.704-251.968c1.872-1.201 3.645-2.616 5.284-4.244 12.497-12.411 12.497-32.534 0-44.945l-257.992-256.226c-12.497-12.411-32.758-12.411-45.255 0s-12.497 32.534 0 44.945l234.859 233.252zM67.842 461.229c-6.562-12.128-4.719-27.599 5.53-37.848 2.863-2.863 6.133-5.070 9.624-6.621l249.364-249.364c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-234.859 234.859 233.863 233.863c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-251.712-251.712c-1.872-1.209-3.645-2.634-5.284-4.273-2.805-2.805-4.981-6.002-6.527-9.414v0 0z" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe600;" glyph-name="video" d="M256 759.559v-623.174c0-70.118 47.316-95.291 105.683-55.222l428.634 294.258c58.622 40.244 58.367 105.034 0 145.103l-428.634 294.258c-58.622 40.244-105.683 15.345-105.683-55.222zM320 766.664l426.195-293.488c30.527-20.25 29.832-31 0-51.070l-426.195-295.039v639.598z" />
11
+ <glyph unicode="&#xe601;" glyph-name="image" d="M294.4 768l0.489 2.446c13.868 69.342 82.599 125.554 152.977 125.554h128.267c70.619 0 139.014-55.74 152.977-125.554l0.489-2.446h166.78c70.483 0 127.62-57.611 127.62-127.489v-449.022c0-70.41-57.249-127.489-127.62-127.489h-768.76c-70.483 0-127.62 57.611-127.62 127.489v449.022c0 70.41 57.249 127.489 127.62 127.489h166.78zM347.123 704h-218.685c-35.641 0-64.438-28.583-64.438-63.843v-448.314c0-35.279 28.85-63.843 64.438-63.843h767.124c35.641 0 64.438 28.583 64.438 63.843v448.314c0 35.279-28.85 63.843-64.438 63.843h-218.816l-13.864 65.375c-7.263 34.25-41.874 62.625-77.145 62.625h-147.627c-35.433 0-69.805-28.038-77.134-62.625l-13.853-65.375zM320 448c0-105.823 85.961-192 192-192 105.823 0 192 85.961 192 192 0 105.823-85.961 192-192 192-105.823 0-192-85.961-192-192zM384 448c0 70.692 56.815 128 128 128 70.692 0 128-56.815 128-128 0-70.692-56.815-128-128-128-70.692 0-128 56.815-128 128z" />
12
+ <glyph unicode="&#xe602;" glyph-name="plus" d="M544 416v-375.294c0-17.673-14.327-32-32-32s-32 14.327-32 32v375.294h-375.294c-17.673 0-32 14.327-32 32s14.327 32 32 32h375.294v375.294c0 17.673 14.327 32 32 32s32-14.327 32-32v-375.294h375.294c17.673 0 32-14.327 32-32s-14.327-32-32-32h-375.294z" />
13
+ <glyph unicode="&#xe603;" glyph-name="embed" d="M882.24 449.498l-235.855 234.241c-12.497 12.411-12.497 32.534 0 44.945s32.758 12.411 45.255 0l253.704-251.968c1.872-1.201 3.645-2.616 5.284-4.244 12.497-12.411 12.497-32.534 0-44.945l-257.992-256.226c-12.497-12.411-32.758-12.411-45.255 0s-12.497 32.534 0 44.945l234.859 233.252zM67.842 461.229c-6.562-12.128-4.719-27.599 5.53-37.848 2.863-2.863 6.133-5.070 9.624-6.621l249.364-249.364c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-234.859 234.859 233.863 233.863c12.497 12.497 12.497 32.758 0 45.255s-32.758 12.497-45.255 0l-251.712-251.712c-1.872-1.209-3.645-2.634-5.284-4.273-2.805-2.805-4.981-6.002-6.527-9.414v0 0z" />
14
+ <glyph unicode="&#xe900;" glyph-name="image-center" horiz-adv-x="1152" d="M128 128h896v-96h-896v96zM128 704h896v-480h-896v480zM128 896h896v-96h-896v96z" />
15
+ <glyph unicode="&#xe901;" glyph-name="image-fill" horiz-adv-x="1152" d="M128 128h896v-96h-896v96zM0 896h1152v-672h-1152v672z" />
16
+ <glyph unicode="&#xe902;" glyph-name="image-left" horiz-adv-x="1152" d="M256 128h896v-96h-896v96zM768 320h384v-96h-384v96zM0 704h672v-480h-672v480zM768 512h384v-96h-384v96zM768 704h384v-96h-384v96zM256 896h896v-96h-896v96z" />
17
+ <glyph unicode="&#xe903;" glyph-name="image-wide" horiz-adv-x="1152" d="M128 128h896v-96h-896v96zM0 704h1152v-480h-1152v480zM128 896h896v-96h-896v96z" />
14
18
  </font></defs></svg>
Binary file
Binary file