@civicactions/cmsds-open-data-components 4.1.0-rc.1 → 4.1.0-rc.2
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/dist/main.css +530 -501
- package/dist/main.css.map +1 -1
- package/dist/main.js +2345 -2320
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +64 -37
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -188,6 +188,35 @@
|
|
|
188
188
|
fill: var(--link__color--visited);
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
.dc-c-search-list-item a.ds-c-button[href$=".pdf"], .dc-c-search-list-item a.ds-c-button[href$=".csv"], .dc-c-search-list-item a.ds-c-button[href$=".xlsx"], .dc-c-search-list-item a.ds-c-button[href$=".zip"] {
|
|
192
|
+
position: relative;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.dc-c-search-list-item a.ds-c-button[href$=".pdf"]:after, .dc-c-search-list-item a.ds-c-button[href$=".csv"]:after, .dc-c-search-list-item a.ds-c-button[href$=".xlsx"]:after, .dc-c-search-list-item a.ds-c-button[href$=".zip"]:after {
|
|
196
|
+
width: 16px;
|
|
197
|
+
height: 16px;
|
|
198
|
+
margin-left: 5px;
|
|
199
|
+
font-family: "Font Awesome 6 Pro", sans-serif;
|
|
200
|
+
font-weight: lighter;
|
|
201
|
+
display: inline-block;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.dc-c-search-list-item a.ds-c-button[href$=".pdf"]:after {
|
|
205
|
+
content: "";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.dc-c-search-list-item a.ds-c-button[href$=".csv"]:after {
|
|
209
|
+
content: "";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.dc-c-search-list-item a.ds-c-button[href$=".xlsx"]:after {
|
|
213
|
+
content: "";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.dc-c-search-list-item a.ds-c-button[href$=".zip"]:after {
|
|
217
|
+
content: "";
|
|
218
|
+
}
|
|
219
|
+
|
|
191
220
|
.dc-c-search-list-item .ds-c-button {
|
|
192
221
|
text-decoration: none !important;
|
|
193
222
|
}
|
|
@@ -685,422 +714,211 @@ div.dkan-c-sidebar-nav .dkan-c--sidebar-nav-wrapper {
|
|
|
685
714
|
fill: var(--color-white);
|
|
686
715
|
}
|
|
687
716
|
|
|
688
|
-
:
|
|
689
|
-
|
|
690
|
-
--su-color--brown: #884c00;
|
|
691
|
-
--su-color--green-dark: #007641;
|
|
692
|
-
--su-color--green-muted: #277564;
|
|
693
|
-
--su-color--orange-dark: #d10000;
|
|
694
|
-
--su-color--orange-light: #d100001a;
|
|
695
|
-
--su-color--red-dark: #970000;
|
|
696
|
-
--su-color--red-light: #d300001a;
|
|
697
|
-
--su-color--red: #d30000;
|
|
717
|
+
.dkan-manage-columns-wrapper .fa-columns:before {
|
|
718
|
+
font-size: .75em !important;
|
|
698
719
|
}
|
|
699
720
|
|
|
700
|
-
.
|
|
701
|
-
|
|
721
|
+
dialog.dkan-manage-columns-dialog {
|
|
722
|
+
width: 100%;
|
|
723
|
+
height: 80vh;
|
|
702
724
|
}
|
|
703
725
|
|
|
704
|
-
.
|
|
705
|
-
|
|
726
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__window {
|
|
727
|
+
min-width: 768px;
|
|
728
|
+
padding: 0;
|
|
706
729
|
}
|
|
707
730
|
|
|
708
|
-
.
|
|
709
|
-
|
|
710
|
-
border-color: var(--su-color--red);
|
|
731
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__window .ds-c-dialog__header {
|
|
732
|
+
padding: 24px;
|
|
711
733
|
}
|
|
712
734
|
|
|
713
|
-
.
|
|
714
|
-
|
|
715
|
-
|
|
735
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list {
|
|
736
|
+
gap: 0;
|
|
737
|
+
max-height: 350px;
|
|
738
|
+
margin: 0;
|
|
739
|
+
padding: 0;
|
|
740
|
+
list-style: none;
|
|
741
|
+
overflow-y: auto;
|
|
716
742
|
}
|
|
717
743
|
|
|
718
|
-
.
|
|
719
|
-
|
|
720
|
-
color: #fff;
|
|
744
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list li {
|
|
745
|
+
cursor: pointer;
|
|
721
746
|
}
|
|
722
747
|
|
|
723
|
-
.
|
|
724
|
-
|
|
748
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .ds-c-choice-wrapper {
|
|
749
|
+
margin-top: 0;
|
|
725
750
|
}
|
|
726
751
|
|
|
727
|
-
.
|
|
728
|
-
|
|
729
|
-
|
|
752
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .dkan-manage-columns-reorder-button {
|
|
753
|
+
background: none;
|
|
754
|
+
border: none;
|
|
730
755
|
}
|
|
731
756
|
|
|
732
|
-
.
|
|
733
|
-
|
|
734
|
-
background-color: var(--su-color--green-muted);
|
|
757
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .dkan-manage-columns-reorder-button.grabbed {
|
|
758
|
+
background-color: var(--color-primary-lighter);
|
|
735
759
|
}
|
|
736
760
|
|
|
737
|
-
|
|
738
|
-
|
|
761
|
+
@media screen and (width <= 1023px) {
|
|
762
|
+
.dkan-manage-columns-wrapper .fa-columns:before {
|
|
763
|
+
font-size: 1.4em !important;
|
|
764
|
+
}
|
|
739
765
|
}
|
|
740
766
|
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
border-radius: 67px;
|
|
746
|
-
margin: 0 0 0 5px;
|
|
747
|
-
padding: 2px 8px;
|
|
748
|
-
font-size: 14px;
|
|
749
|
-
display: inline-block;
|
|
750
|
-
position: relative;
|
|
751
|
-
top: -5px;
|
|
752
|
-
}
|
|
767
|
+
@media screen and (width <= 767px) {
|
|
768
|
+
dialog.dkan-manage-columns-dialog {
|
|
769
|
+
height: 100%;
|
|
770
|
+
}
|
|
753
771
|
|
|
754
|
-
.
|
|
755
|
-
|
|
756
|
-
|
|
772
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__window {
|
|
773
|
+
width: 100%;
|
|
774
|
+
min-width: auto;
|
|
775
|
+
height: 100%;
|
|
776
|
+
margin-top: 0;
|
|
777
|
+
}
|
|
757
778
|
|
|
758
|
-
.
|
|
759
|
-
|
|
760
|
-
|
|
779
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__body > div:not(.ds-c-dialog__actions) {
|
|
780
|
+
flex-direction: column;
|
|
781
|
+
display: flex;
|
|
782
|
+
}
|
|
761
783
|
|
|
762
|
-
.
|
|
763
|
-
|
|
784
|
+
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list {
|
|
785
|
+
max-height: calc(100vh - 435px);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
dialog.dkan-manage-columns-dialog .ds-c-dialog__actions {
|
|
789
|
+
background-color: #fff;
|
|
790
|
+
padding-top: 16px;
|
|
791
|
+
position: absolute;
|
|
792
|
+
bottom: 0;
|
|
793
|
+
}
|
|
764
794
|
}
|
|
765
795
|
|
|
766
|
-
.
|
|
767
|
-
|
|
796
|
+
.dkan-fullscreen-data-table-wrapper .fa-compress:before, .dkan-fullscreen-data-table-wrapper .fa-expand:before {
|
|
797
|
+
font-size: .75em !important;
|
|
768
798
|
}
|
|
769
799
|
|
|
770
|
-
.
|
|
771
|
-
|
|
800
|
+
dialog.dkan-full-screen-dataset-dialog {
|
|
801
|
+
height: 100vh;
|
|
772
802
|
}
|
|
773
803
|
|
|
774
|
-
.
|
|
775
|
-
|
|
776
|
-
|
|
804
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window {
|
|
805
|
+
flex-direction: column;
|
|
806
|
+
width: 100%;
|
|
777
807
|
max-width: 100%;
|
|
778
|
-
|
|
808
|
+
height: 100%;
|
|
809
|
+
margin: 0;
|
|
810
|
+
display: flex;
|
|
779
811
|
}
|
|
780
812
|
|
|
781
|
-
.
|
|
782
|
-
|
|
813
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__header {
|
|
814
|
+
flex: 0;
|
|
815
|
+
width: 100%;
|
|
783
816
|
}
|
|
784
817
|
|
|
785
|
-
.
|
|
786
|
-
|
|
818
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body {
|
|
819
|
+
width: 100%;
|
|
820
|
+
height: 100%;
|
|
787
821
|
}
|
|
788
822
|
|
|
789
|
-
.
|
|
790
|
-
|
|
823
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] {
|
|
824
|
+
flex-direction: column;
|
|
825
|
+
height: 100%;
|
|
826
|
+
display: flex;
|
|
791
827
|
}
|
|
792
828
|
|
|
793
|
-
.
|
|
794
|
-
|
|
829
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode {
|
|
830
|
+
flex-direction: column;
|
|
831
|
+
width: 100%;
|
|
832
|
+
height: 100%;
|
|
833
|
+
display: flex;
|
|
834
|
+
overflow: hidden;
|
|
795
835
|
}
|
|
796
836
|
|
|
797
|
-
.
|
|
798
|
-
|
|
837
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode > div {
|
|
838
|
+
flex: 0;
|
|
839
|
+
width: 100%;
|
|
840
|
+
min-height: auto;
|
|
841
|
+
margin: 8px 0 !important;
|
|
799
842
|
}
|
|
800
843
|
|
|
801
|
-
.
|
|
802
|
-
|
|
803
|
-
|
|
844
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode .dc-c-datatable-wrapper {
|
|
845
|
+
flex: 1;
|
|
846
|
+
width: 100%;
|
|
847
|
+
height: 100%;
|
|
804
848
|
}
|
|
805
849
|
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
}
|
|
850
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode ~ div {
|
|
851
|
+
flex: 0;
|
|
852
|
+
width: 100%;
|
|
810
853
|
}
|
|
811
854
|
|
|
812
|
-
|
|
813
|
-
|
|
855
|
+
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window form {
|
|
856
|
+
max-width: 1024px;
|
|
814
857
|
}
|
|
815
858
|
|
|
816
|
-
|
|
817
|
-
|
|
859
|
+
@media screen and (width <= 1023px) {
|
|
860
|
+
.dkan-fullscreen-data-table-wrapper .fa-compress:before, .dkan-fullscreen-data-table-wrapper .fa-expand:before {
|
|
861
|
+
font-size: 1.4em !important;
|
|
862
|
+
}
|
|
818
863
|
}
|
|
819
864
|
|
|
820
|
-
|
|
821
|
-
|
|
865
|
+
.dc-c-datatable {
|
|
866
|
+
border-spacing: 0;
|
|
867
|
+
width: 100%;
|
|
822
868
|
}
|
|
823
869
|
|
|
824
|
-
|
|
825
|
-
color: #
|
|
826
|
-
|
|
870
|
+
.dc-c-datatable thead > .dc-c-sticky-header {
|
|
871
|
+
background-color: #fff;
|
|
872
|
+
position: sticky;
|
|
873
|
+
top: 0;
|
|
827
874
|
}
|
|
828
875
|
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
876
|
+
.dc-c-datatable th {
|
|
877
|
+
text-align: left;
|
|
878
|
+
position: relative;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.dc-c-datatable thead th div {
|
|
882
|
+
cursor: default;
|
|
883
|
+
align-items: center;
|
|
832
884
|
display: flex;
|
|
833
885
|
}
|
|
834
886
|
|
|
835
|
-
|
|
836
|
-
|
|
887
|
+
.dc-c-datatable-wrapper {
|
|
888
|
+
display: grid;
|
|
889
|
+
overflow: auto;
|
|
837
890
|
}
|
|
838
891
|
|
|
839
|
-
|
|
840
|
-
|
|
892
|
+
.dc-thead--fixed-size th {
|
|
893
|
+
border-left: 2px solid var(--color-border);
|
|
841
894
|
}
|
|
842
895
|
|
|
843
|
-
|
|
844
|
-
|
|
896
|
+
.dc-thead--fixed-size th:first-child {
|
|
897
|
+
border-left: none;
|
|
845
898
|
}
|
|
846
899
|
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
900
|
+
.dc-thead--resizeable .dc-c-resize-handle {
|
|
901
|
+
background-color: var(--color-gray-light);
|
|
902
|
+
cursor: col-resize;
|
|
903
|
+
z-index: 1;
|
|
850
904
|
border: none;
|
|
905
|
+
width: 10px;
|
|
906
|
+
min-width: 10px;
|
|
907
|
+
margin-left: -10px;
|
|
908
|
+
padding: 0;
|
|
909
|
+
display: block;
|
|
910
|
+
top: 0;
|
|
911
|
+
bottom: 0;
|
|
912
|
+
right: 0;
|
|
913
|
+
position: absolute !important;
|
|
851
914
|
}
|
|
852
915
|
|
|
853
|
-
|
|
854
|
-
|
|
916
|
+
.dc-thead--resizeable .dc-c-resize-handle.isResizing, .dc-thead--resizeable .dc-c-resize-handle:hover {
|
|
917
|
+
background-color: var(--color-primary);
|
|
855
918
|
}
|
|
856
919
|
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
padding: 16px;
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
#api-docs-swagger-ui-plugin .opblock .opblock-section, #api-docs-swagger-ui-plugin .opblock .responses-wrapper {
|
|
863
|
-
background: #fff;
|
|
864
|
-
border: 1px solid #d6d7d9;
|
|
865
|
-
border-radius: 2px;
|
|
866
|
-
margin-left: 24px;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header {
|
|
870
|
-
box-shadow: none;
|
|
871
|
-
background: #f6f9fd;
|
|
872
|
-
padding: 16px;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header .opblock-title, #api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header h4, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header .opblock-title, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header h4 {
|
|
876
|
-
color: #0c2499;
|
|
877
|
-
text-transform: uppercase;
|
|
878
|
-
letter-spacing: 1px;
|
|
879
|
-
cursor: default;
|
|
880
|
-
font-size: .9em;
|
|
881
|
-
font-weight: 800;
|
|
882
|
-
line-height: 16px;
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header .opblock-title > span:after, #api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header h4 > span:after, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header .opblock-title > span:after, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header h4 > span:after {
|
|
886
|
-
background: none !important;
|
|
887
|
-
display: none !important;
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
#api-docs-swagger-ui-plugin .OperationTag:not(:first-of-type) .toggle-block {
|
|
891
|
-
border-top: 1px solid #e1e2e3;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button {
|
|
895
|
-
width: 100%;
|
|
896
|
-
font-weight: inherit;
|
|
897
|
-
flex: auto;
|
|
898
|
-
min-height: 64px;
|
|
899
|
-
position: relative;
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:hover .toggle-block-title-text, #api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:focus .toggle-block-title-text {
|
|
903
|
-
text-decoration: underline;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:hover .toggle-block-title-description, #api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:focus .toggle-block-title-description {
|
|
907
|
-
text-decoration: none;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button .toggle-block-title-description {
|
|
911
|
-
color: #3b4151;
|
|
912
|
-
margin-top: 1px;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button > svg {
|
|
916
|
-
pointer-events: none;
|
|
917
|
-
width: 20px;
|
|
918
|
-
height: 20px;
|
|
919
|
-
position: absolute;
|
|
920
|
-
top: 50%;
|
|
921
|
-
left: 0;
|
|
922
|
-
transform: translateY(-50%);
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
#api-docs-swagger-ui-plugin .OperationTag .wrapper:not(:last-child) .block-desktop {
|
|
926
|
-
margin-bottom: 32px;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container {
|
|
930
|
-
border: 1px solid #eaebec;
|
|
931
|
-
flex: 1;
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
935
|
-
background: #6f7570;
|
|
936
|
-
min-width: 80px;
|
|
937
|
-
height: calc(100% - 8px);
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
941
|
-
color: #3b4151;
|
|
942
|
-
word-break: break-word;
|
|
943
|
-
max-width: 280px;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
947
|
-
box-shadow: none;
|
|
948
|
-
color: #323a45;
|
|
949
|
-
background: none;
|
|
950
|
-
flex: 1;
|
|
951
|
-
height: 48px;
|
|
952
|
-
}
|
|
953
|
-
|
|
954
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input:focus {
|
|
955
|
-
box-shadow: none;
|
|
956
|
-
background: none;
|
|
957
|
-
border: none;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
961
|
-
box-shadow: none;
|
|
962
|
-
background: #0c249905;
|
|
963
|
-
border: 1px solid #0c249914;
|
|
964
|
-
width: 40px;
|
|
965
|
-
height: 40px;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn:hover, #api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn:focus {
|
|
969
|
-
background: #0c249914;
|
|
970
|
-
border: 1px solid #0c24991f;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels {
|
|
974
|
-
width: 100%;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels > h3 {
|
|
978
|
-
margin: 16px 0;
|
|
979
|
-
}
|
|
980
|
-
|
|
981
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box {
|
|
982
|
-
background: #fff;
|
|
983
|
-
border: 1px solid #eaebec;
|
|
984
|
-
border-radius: 2px;
|
|
985
|
-
width: 100%;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box {
|
|
989
|
-
background-color: #fff;
|
|
990
|
-
padding: 0;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control {
|
|
994
|
-
border: none;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box {
|
|
998
|
-
background: #fff;
|
|
999
|
-
padding: 0;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box {
|
|
1003
|
-
background: #fff;
|
|
1004
|
-
border: 1px solid #eaebec;
|
|
1005
|
-
border-radius: 2px;
|
|
1006
|
-
width: 100%;
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box > .model > span > span > .model-title {
|
|
1010
|
-
font-weight: 600;
|
|
1011
|
-
display: block;
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
|
-
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box > .model > span > span > .model-toggle {
|
|
1015
|
-
display: none;
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
@media screen and (width <= 1023px) {
|
|
1019
|
-
#api-docs-swagger-ui-plugin .OperationSummary__try-it-out-btn {
|
|
1020
|
-
align-self: flex-start;
|
|
1021
|
-
}
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
@media screen and (width <= 767px) {
|
|
1025
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
1026
|
-
width: calc(100% - 8px);
|
|
1027
|
-
}
|
|
1028
|
-
|
|
1029
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
1030
|
-
width: 100%;
|
|
1031
|
-
max-width: none;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
1035
|
-
width: 100%;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
1039
|
-
align-self: flex-end;
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
.ds-c-button.display-settings-font {
|
|
1044
|
-
font: inherit;
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
.dc-c-datatable {
|
|
1048
|
-
border-spacing: 0;
|
|
1049
|
-
width: 100%;
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
.dc-c-datatable thead > .dc-c-sticky-header {
|
|
1053
|
-
background-color: #fff;
|
|
1054
|
-
position: sticky;
|
|
1055
|
-
top: 0;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.dc-c-datatable th {
|
|
1059
|
-
text-align: left;
|
|
1060
|
-
position: relative;
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
.dc-c-datatable thead th div {
|
|
1064
|
-
cursor: default;
|
|
1065
|
-
align-items: center;
|
|
1066
|
-
display: flex;
|
|
1067
|
-
}
|
|
1068
|
-
|
|
1069
|
-
.dc-c-datatable-wrapper {
|
|
1070
|
-
display: grid;
|
|
1071
|
-
overflow: auto;
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
|
-
.dc-thead--fixed-size th {
|
|
1075
|
-
border-left: 2px solid var(--color-border);
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
.dc-thead--fixed-size th:first-child {
|
|
1079
|
-
border-left: none;
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.dc-thead--resizeable .dc-c-resize-handle {
|
|
1083
|
-
background-color: var(--color-gray-light);
|
|
1084
|
-
cursor: col-resize;
|
|
1085
|
-
z-index: 1;
|
|
1086
|
-
border: none;
|
|
1087
|
-
width: 10px;
|
|
1088
|
-
min-width: 10px;
|
|
1089
|
-
margin-left: -10px;
|
|
1090
|
-
padding: 0;
|
|
1091
|
-
display: block;
|
|
1092
|
-
top: 0;
|
|
1093
|
-
bottom: 0;
|
|
1094
|
-
right: 0;
|
|
1095
|
-
position: absolute !important;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.dc-thead--resizeable .dc-c-resize-handle.isResizing, .dc-thead--resizeable .dc-c-resize-handle:hover {
|
|
1099
|
-
background-color: var(--color-primary);
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
thead.dc-thead--truncated th > div {
|
|
1103
|
-
align-items: stretch;
|
|
920
|
+
thead.dc-thead--truncated th > div {
|
|
921
|
+
align-items: stretch;
|
|
1104
922
|
}
|
|
1105
923
|
|
|
1106
924
|
thead.dc-thead--truncated th > div > div {
|
|
@@ -1202,159 +1020,11 @@ div.dc-c-datadictionary-table thead.dc-thead--truncated th > div > div, div.dc-c
|
|
|
1202
1020
|
}
|
|
1203
1021
|
}
|
|
1204
1022
|
|
|
1205
|
-
.dkan-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
width: 100%;
|
|
1211
|
-
height: 80vh;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
dialog.dkan-manage-columns-dialog .ds-c-dialog__window {
|
|
1215
|
-
min-width: 768px;
|
|
1216
|
-
padding: 0;
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
dialog.dkan-manage-columns-dialog .ds-c-dialog__window .ds-c-dialog__header {
|
|
1220
|
-
padding: 24px;
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list {
|
|
1224
|
-
gap: 0;
|
|
1225
|
-
max-height: 350px;
|
|
1226
|
-
margin: 0;
|
|
1227
|
-
padding: 0;
|
|
1228
|
-
list-style: none;
|
|
1229
|
-
overflow-y: auto;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list li {
|
|
1233
|
-
cursor: pointer;
|
|
1234
|
-
}
|
|
1235
|
-
|
|
1236
|
-
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .ds-c-choice-wrapper {
|
|
1237
|
-
margin-top: 0;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .dkan-manage-columns-reorder-button {
|
|
1241
|
-
background: none;
|
|
1242
|
-
border: none;
|
|
1243
|
-
}
|
|
1244
|
-
|
|
1245
|
-
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list .dkan-manage-columns-reorder-button.grabbed {
|
|
1246
|
-
background-color: var(--color-primary-lighter);
|
|
1247
|
-
}
|
|
1248
|
-
|
|
1249
|
-
@media screen and (width <= 1023px) {
|
|
1250
|
-
.dkan-manage-columns-wrapper .fa-columns:before {
|
|
1251
|
-
font-size: 1.4em !important;
|
|
1252
|
-
}
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
@media screen and (width <= 767px) {
|
|
1256
|
-
dialog.dkan-manage-columns-dialog {
|
|
1257
|
-
height: 100%;
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
dialog.dkan-manage-columns-dialog .ds-c-dialog__window {
|
|
1261
|
-
width: 100%;
|
|
1262
|
-
min-width: auto;
|
|
1263
|
-
height: 100%;
|
|
1264
|
-
margin-top: 0;
|
|
1265
|
-
}
|
|
1266
|
-
|
|
1267
|
-
dialog.dkan-manage-columns-dialog .ds-c-dialog__body > div:not(.ds-c-dialog__actions) {
|
|
1268
|
-
flex-direction: column;
|
|
1269
|
-
display: flex;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
dialog.dkan-manage-columns-dialog .dkan-manage-columns-list {
|
|
1273
|
-
max-height: calc(100vh - 435px);
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
dialog.dkan-manage-columns-dialog .ds-c-dialog__actions {
|
|
1277
|
-
background-color: #fff;
|
|
1278
|
-
padding-top: 16px;
|
|
1279
|
-
position: absolute;
|
|
1280
|
-
bottom: 0;
|
|
1281
|
-
}
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
.dkan-fullscreen-data-table-wrapper .fa-compress:before, .dkan-fullscreen-data-table-wrapper .fa-expand:before {
|
|
1285
|
-
font-size: .75em !important;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
dialog.dkan-full-screen-dataset-dialog {
|
|
1289
|
-
height: 100vh;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window {
|
|
1293
|
-
flex-direction: column;
|
|
1294
|
-
width: 100%;
|
|
1295
|
-
max-width: 100%;
|
|
1296
|
-
height: 100%;
|
|
1297
|
-
margin: 0;
|
|
1298
|
-
display: flex;
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__header {
|
|
1302
|
-
flex: 0;
|
|
1303
|
-
width: 100%;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body {
|
|
1307
|
-
width: 100%;
|
|
1308
|
-
height: 100%;
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] {
|
|
1312
|
-
flex-direction: column;
|
|
1313
|
-
height: 100%;
|
|
1314
|
-
display: flex;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode {
|
|
1318
|
-
flex-direction: column;
|
|
1319
|
-
width: 100%;
|
|
1320
|
-
height: 100%;
|
|
1321
|
-
display: flex;
|
|
1322
|
-
overflow: hidden;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode > div {
|
|
1326
|
-
flex: 0;
|
|
1327
|
-
width: 100%;
|
|
1328
|
-
min-height: auto;
|
|
1329
|
-
margin: 8px 0 !important;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode .dc-c-datatable-wrapper {
|
|
1333
|
-
flex: 1;
|
|
1334
|
-
width: 100%;
|
|
1335
|
-
height: 100%;
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window .ds-c-dialog__body > div[id^="dialog"][id$="__content"] .dkan-datatable-fullscreen-mode ~ div {
|
|
1339
|
-
flex: 0;
|
|
1340
|
-
width: 100%;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
dialog.dkan-full-screen-dataset-dialog > .ds-c-dialog__window form {
|
|
1344
|
-
max-width: 1024px;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
@media screen and (width <= 1023px) {
|
|
1348
|
-
.dkan-fullscreen-data-table-wrapper .fa-compress:before, .dkan-fullscreen-data-table-wrapper .fa-expand:before {
|
|
1349
|
-
font-size: 1.4em !important;
|
|
1350
|
-
}
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
.dkan-filter-dataset-control {
|
|
1354
|
-
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 42px;
|
|
1355
|
-
align-items: center;
|
|
1356
|
-
gap: 1rem;
|
|
1357
|
-
display: grid;
|
|
1023
|
+
.dkan-filter-dataset-control {
|
|
1024
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) 42px;
|
|
1025
|
+
align-items: center;
|
|
1026
|
+
gap: 1rem;
|
|
1027
|
+
display: grid;
|
|
1358
1028
|
}
|
|
1359
1029
|
|
|
1360
1030
|
button.dkan-delete-dataset-filter-button {
|
|
@@ -1689,6 +1359,365 @@ dialog.dkan-filter-dataset-dialog .ds-c-dialog__window .ds-c-dialog__actions {
|
|
|
1689
1359
|
}
|
|
1690
1360
|
}
|
|
1691
1361
|
|
|
1362
|
+
:root {
|
|
1363
|
+
--su-color--blue-dark: #036;
|
|
1364
|
+
--su-color--brown: #884c00;
|
|
1365
|
+
--su-color--green-dark: #007641;
|
|
1366
|
+
--su-color--green-muted: #277564;
|
|
1367
|
+
--su-color--orange-dark: #d10000;
|
|
1368
|
+
--su-color--orange-light: #d100001a;
|
|
1369
|
+
--su-color--red-dark: #970000;
|
|
1370
|
+
--su-color--red-light: #d300001a;
|
|
1371
|
+
--su-color--red: #d30000;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.swagger-ui.swagger-ui {
|
|
1375
|
+
font-family: inherit;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
.swagger-ui.swagger-ui .opblock .opblock-summary-method {
|
|
1379
|
+
color: #333;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.swagger-ui.swagger-ui .opblock.opblock-delete {
|
|
1383
|
+
background-color: var(--su-color--red-light);
|
|
1384
|
+
border-color: var(--su-color--red);
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.swagger-ui.swagger-ui .opblock.opblock-delete .opblock-summary-method {
|
|
1388
|
+
color: #fff;
|
|
1389
|
+
background-color: var(--su-color--red-dark);
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
.swagger-ui.swagger-ui .opblock.opblock-put .opblock-summary-method {
|
|
1393
|
+
background-color: var(--su-color--brown);
|
|
1394
|
+
color: #fff;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.swagger-ui.swagger-ui .parameter__name.required span, .swagger-ui.swagger-ui .parameter__name.required:after {
|
|
1398
|
+
color: var(--su-color--red);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.swagger-ui.swagger-ui .btn.cancel {
|
|
1402
|
+
border-color: var(--su-color--red);
|
|
1403
|
+
color: var(--su-color--red);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.swagger-ui.swagger-ui .btn.authorize {
|
|
1407
|
+
border-color: var(--su-color--green-muted);
|
|
1408
|
+
background-color: var(--su-color--green-muted);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.swagger-ui.swagger-ui .btn.execute {
|
|
1412
|
+
background-color: var(--su-color--blue-dark);
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.swagger-ui.swagger-ui .information-container span.version-stamp {
|
|
1416
|
+
color: #fff;
|
|
1417
|
+
vertical-align: super;
|
|
1418
|
+
background-color: #666;
|
|
1419
|
+
border-radius: 67px;
|
|
1420
|
+
margin: 0 0 0 5px;
|
|
1421
|
+
padding: 2px 8px;
|
|
1422
|
+
font-size: 14px;
|
|
1423
|
+
display: inline-block;
|
|
1424
|
+
position: relative;
|
|
1425
|
+
top: -5px;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.swagger-ui.swagger-ui .information-container span.version-stamp.version-stamp--openapi {
|
|
1429
|
+
background-color: #005830;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.swagger-ui.swagger-ui .information-container a {
|
|
1433
|
+
color: var(--link__color);
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.swagger-ui.swagger-ui .information-container a:visited {
|
|
1437
|
+
color: var(--link__color--visited);
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.swagger-ui.swagger-ui .information-container a:hover {
|
|
1441
|
+
color: var(--link__color);
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.swagger-ui.swagger-ui .information-container a:active {
|
|
1445
|
+
color: var(--link__color--active);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.swagger-ui.swagger-ui .model-hint {
|
|
1449
|
+
word-wrap: break-word;
|
|
1450
|
+
white-space: normal;
|
|
1451
|
+
max-width: 100%;
|
|
1452
|
+
top: 1.5em;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.swagger-ui.swagger-ui section.models .model-container {
|
|
1456
|
+
overflow-x: auto;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.swagger-ui.swagger-ui table {
|
|
1460
|
+
min-width: 500px;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.swagger-ui.swagger-ui table.model tbody tr td:first-of-type {
|
|
1464
|
+
min-width: 174px;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
.swagger-ui.swagger-ui .table-container, .swagger-ui.swagger-ui .responses-inner {
|
|
1468
|
+
overflow: scroll;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.swagger-ui h2, .swagger-ui h3, .swagger-ui h4 {
|
|
1472
|
+
font-weight: bold !important;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.swagger-ui div.wrapper {
|
|
1476
|
+
padding-left: 0;
|
|
1477
|
+
padding-right: 0;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
@media (width <= 544px) {
|
|
1481
|
+
.swagger-ui .opblock-tag-section .opblock-tag small {
|
|
1482
|
+
flex: initial;
|
|
1483
|
+
}
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
#api-docs-swagger-ui-plugin .model .property {
|
|
1487
|
+
color: #6b6b6b !important;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
#api-docs-swagger-ui-plugin pre.errors-wrapper {
|
|
1491
|
+
display: none;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
#api-docs-swagger-ui-plugin .btn {
|
|
1495
|
+
transition: none;
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
#api-docs-swagger-ui-plugin .parameters input {
|
|
1499
|
+
color: #323a45;
|
|
1500
|
+
font-size: .8em;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
#api-docs-swagger-ui-plugin .execute-wrapper, #api-docs-swagger-ui-plugin .btn-group {
|
|
1504
|
+
justify-content: flex-start;
|
|
1505
|
+
padding: 12px 24px 24px;
|
|
1506
|
+
display: flex;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
#api-docs-swagger-ui-plugin .wrapper > .block {
|
|
1510
|
+
padding: 0;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
#api-docs-swagger-ui-plugin .wrapper:has( + .wrapper:last-child .block:empty) {
|
|
1514
|
+
display: flow-root;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
#api-docs-swagger-ui-plugin .information-container svg:not(:root) {
|
|
1518
|
+
overflow: visible;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
#api-docs-swagger-ui-plugin .opblock {
|
|
1522
|
+
box-shadow: none;
|
|
1523
|
+
background: none;
|
|
1524
|
+
border: none;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section {
|
|
1528
|
+
margin-top: 25px;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-description-wrapper {
|
|
1532
|
+
margin: 0;
|
|
1533
|
+
padding: 16px;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section, #api-docs-swagger-ui-plugin .opblock .responses-wrapper {
|
|
1537
|
+
background: #fff;
|
|
1538
|
+
border: 1px solid #d6d7d9;
|
|
1539
|
+
border-radius: 2px;
|
|
1540
|
+
margin-left: 24px;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header {
|
|
1544
|
+
box-shadow: none;
|
|
1545
|
+
background: #f6f9fd;
|
|
1546
|
+
padding: 16px;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header .opblock-title, #api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header h4, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header .opblock-title, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header h4 {
|
|
1550
|
+
color: #0c2499;
|
|
1551
|
+
text-transform: uppercase;
|
|
1552
|
+
letter-spacing: 1px;
|
|
1553
|
+
cursor: default;
|
|
1554
|
+
font-size: .9em;
|
|
1555
|
+
font-weight: 800;
|
|
1556
|
+
line-height: 16px;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
#api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header .opblock-title > span:after, #api-docs-swagger-ui-plugin .opblock .opblock-section .opblock-section-header h4 > span:after, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header .opblock-title > span:after, #api-docs-swagger-ui-plugin .opblock .responses-wrapper .opblock-section-header h4 > span:after {
|
|
1560
|
+
background: none !important;
|
|
1561
|
+
display: none !important;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
#api-docs-swagger-ui-plugin .OperationTag:not(:first-of-type) .toggle-block {
|
|
1565
|
+
border-top: 1px solid #e1e2e3;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button {
|
|
1569
|
+
width: 100%;
|
|
1570
|
+
font-weight: inherit;
|
|
1571
|
+
flex: auto;
|
|
1572
|
+
min-height: 64px;
|
|
1573
|
+
position: relative;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:hover .toggle-block-title-text, #api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:focus .toggle-block-title-text {
|
|
1577
|
+
text-decoration: underline;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:hover .toggle-block-title-description, #api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button:focus .toggle-block-title-description {
|
|
1581
|
+
text-decoration: none;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button .toggle-block-title-description {
|
|
1585
|
+
color: #3b4151;
|
|
1586
|
+
margin-top: 1px;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
#api-docs-swagger-ui-plugin .OperationTag .toggle-block-title-button > svg {
|
|
1590
|
+
pointer-events: none;
|
|
1591
|
+
width: 20px;
|
|
1592
|
+
height: 20px;
|
|
1593
|
+
position: absolute;
|
|
1594
|
+
top: 50%;
|
|
1595
|
+
left: 0;
|
|
1596
|
+
transform: translateY(-50%);
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
#api-docs-swagger-ui-plugin .OperationTag .wrapper:not(:last-child) .block-desktop {
|
|
1600
|
+
margin-bottom: 32px;
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container {
|
|
1604
|
+
border: 1px solid #eaebec;
|
|
1605
|
+
flex: 1;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
1609
|
+
background: #6f7570;
|
|
1610
|
+
min-width: 80px;
|
|
1611
|
+
height: calc(100% - 8px);
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
1615
|
+
color: #3b4151;
|
|
1616
|
+
word-break: break-word;
|
|
1617
|
+
max-width: 280px;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
1621
|
+
box-shadow: none;
|
|
1622
|
+
color: #323a45;
|
|
1623
|
+
background: none;
|
|
1624
|
+
flex: 1;
|
|
1625
|
+
height: 48px;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input:focus {
|
|
1629
|
+
box-shadow: none;
|
|
1630
|
+
background: none;
|
|
1631
|
+
border: none;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
1635
|
+
box-shadow: none;
|
|
1636
|
+
background: #0c249905;
|
|
1637
|
+
border: 1px solid #0c249914;
|
|
1638
|
+
width: 40px;
|
|
1639
|
+
height: 40px;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn:hover, #api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn:focus {
|
|
1643
|
+
background: #0c249914;
|
|
1644
|
+
border: 1px solid #0c24991f;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels {
|
|
1648
|
+
width: 100%;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels > h3 {
|
|
1652
|
+
margin: 16px 0;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box {
|
|
1656
|
+
background: #fff;
|
|
1657
|
+
border: 1px solid #eaebec;
|
|
1658
|
+
border-radius: 2px;
|
|
1659
|
+
width: 100%;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box {
|
|
1663
|
+
background-color: #fff;
|
|
1664
|
+
padding: 0;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control {
|
|
1668
|
+
border: none;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box {
|
|
1672
|
+
background: #fff;
|
|
1673
|
+
padding: 0;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box {
|
|
1677
|
+
background: #fff;
|
|
1678
|
+
border: 1px solid #eaebec;
|
|
1679
|
+
border-radius: 2px;
|
|
1680
|
+
width: 100%;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box > .model > span > span > .model-title {
|
|
1684
|
+
font-weight: 600;
|
|
1685
|
+
display: block;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
#api-docs-swagger-ui-plugin .ApiDocsModels .no-margin > .model-container > .model-box > .model-box-control > .pointer > .model-box > .model-box > .model > span > span > .model-toggle {
|
|
1689
|
+
display: none;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
@media screen and (width <= 1023px) {
|
|
1693
|
+
#api-docs-swagger-ui-plugin .OperationSummary__try-it-out-btn {
|
|
1694
|
+
align-self: flex-start;
|
|
1695
|
+
}
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
@media screen and (width <= 767px) {
|
|
1699
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__method {
|
|
1700
|
+
width: calc(100% - 8px);
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__summary {
|
|
1704
|
+
width: 100%;
|
|
1705
|
+
max-width: none;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_path-input {
|
|
1709
|
+
width: 100%;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
#api-docs-swagger-ui-plugin .OperationSummary__path-container .OperationSummary__path-container_copy-btn {
|
|
1713
|
+
align-self: flex-end;
|
|
1714
|
+
}
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
.ds-c-button.display-settings-font {
|
|
1718
|
+
font: inherit;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1692
1721
|
.dc-c-breadcrumb__list {
|
|
1693
1722
|
margin-top: 0;
|
|
1694
1723
|
margin-bottom: 0;
|