canvasxpress-cli 38.9.21 → 39.0.27

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvasxpress-cli",
3
- "version": "38.9.21",
3
+ "version": "39.0.27",
4
4
  "license": {
5
5
  "type": "Dual licensing",
6
6
  "url": "https://www.canvasxpress.org/docs/license.html"
@@ -857,6 +857,25 @@ img.CanvasXpressCustomizerRight, svg.CanvasXpressCustomizerRight {
857
857
  box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
858
858
  }
859
859
 
860
+ img.CanvasXpressCustomizerRightB, svg.CanvasXpressCustomizerRightB {
861
+ background-position: center;
862
+ border: 1px solid rgb(51, 122, 183) !important;
863
+ border-radius: 4px;
864
+ color: rgb(34, 34, 34);
865
+ font: normal 12px arial, tahoma, sans-serif;
866
+ height: 24px;
867
+ line-height: 24px;
868
+ list-style: none;
869
+ margin: 0px !important;
870
+ position: relative;
871
+ padding: 0px;
872
+ vertical-align: top;
873
+ width: 24px;
874
+ white-space: nowrap;
875
+ background: rgba(0, 0, 0, 0) !important;
876
+ box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
877
+ }
878
+
860
879
  span.CanvasXpressCustomizerRight {
861
880
  color: rgb(34, 34, 34);
862
881
  font: normal 16px arial, tahoma, sans-serif;
@@ -986,7 +1005,7 @@ span.CanvasXpressSearchCustomizer {
986
1005
  clear: left;
987
1006
  }
988
1007
 
989
- span.CanvasXpressSearchCustomizerSelect, span.CanvasXpressSearchCustomizerDescription, span.CanvasXpressSearchCustomizerCurrent {
1008
+ span.CanvasXpressSearchCustomizerSelect, span.CanvasXpressSearchCustomizerDescription, span.CanvasXpressSearchCustomizerCategory, span.CanvasXpressSearchCustomizerCurrent {
990
1009
  font: normal 16px arial, tahoma, sans-serif;
991
1010
  line-height: 28px;
992
1011
  list-style: none;
@@ -1001,7 +1020,7 @@ span.CanvasXpressSearchCustomizerSelect {
1001
1020
  color: rgb(34, 34, 34);
1002
1021
  }
1003
1022
 
1004
- span.CanvasXpressSearchCustomizerDescription {
1023
+ span.CanvasXpressSearchCustomizerDescription, span.CanvasXpressSearchCustomizerCategory {
1005
1024
  color: rgb(51, 122, 183);
1006
1025
  overflow: hidden;
1007
1026
  text-overflow: ellipsis;
@@ -1030,7 +1049,13 @@ span.CanvasXpressSearchCustomizerDescription:before {
1030
1049
  content: "Description [ ";
1031
1050
  }
1032
1051
 
1033
- span.CanvasXpressSearchCustomizerDescription:after {
1052
+ span.CanvasXpressSearchCustomizerCategory:before {
1053
+ color: rgb(34, 34, 34);
1054
+ font-weight: bold;
1055
+ content: "Category [ ";
1056
+ }
1057
+
1058
+ span.CanvasXpressSearchCustomizerDescription:after, span.CanvasXpressSearchCustomizerCategory:after {
1034
1059
  color: rgb(34, 34, 34);
1035
1060
  font-weight: bold;
1036
1061
  content: " ]";
@@ -5605,6 +5630,43 @@ Copyright (c) 2018 Christian Pucci
5605
5630
  }
5606
5631
  }
5607
5632
 
5633
+ .slideUp2 {
5634
+ -webkit-animation-name: slideUp2;
5635
+ animation-name: slideUp2;
5636
+ }
5637
+
5638
+ @-webkit-keyframes slideUp2 {
5639
+ 0% {
5640
+ -webkit-transform-origin: 0 0;
5641
+ transform-origin: 0 0;
5642
+ -webkit-transform: translateY(0%);
5643
+ transform: translateY(0%);
5644
+ }
5645
+ 100% {
5646
+ -webkit-transform-origin: 0 0;
5647
+ transform-origin: 0 0;
5648
+ -webkit-transform: translateY(-100%);
5649
+ transform: translateY(-100%);
5650
+ }
5651
+ }
5652
+
5653
+ @keyframes slideUp2 {
5654
+ 0% {
5655
+ opacity: 1;
5656
+ -webkit-transform-origin: 0 0;
5657
+ transform-origin: 0 0;
5658
+ -webkit-transform: translateY(0%);
5659
+ transform: translateY(0%);
5660
+ }
5661
+ 100% {
5662
+ opacity: 0;
5663
+ -webkit-transform-origin: 0 0;
5664
+ transform-origin: 0 0;
5665
+ -webkit-transform: translateY(-100%);
5666
+ transform: translateY(-100%);
5667
+ }
5668
+ }
5669
+
5608
5670
  .slideUpReturn {
5609
5671
  -webkit-animation-name: slideUpReturn;
5610
5672
  animation-name: slideUpReturn;