File tree Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ html[xmlns] .clearfix { display: block;}
88
88
.wi-child-element {
89
89
display : flex;
90
90
border-bottom : # eee solid 1px ;
91
+ flex-direction : row;
91
92
}
92
93
.wi-child-duration {
93
94
padding : 10px ;
@@ -527,4 +528,38 @@ td.ε_row {
527
528
528
529
.select-project {
529
530
/*font-size: 24px;*/
531
+ }
532
+ .tags-select {
533
+ width : 200px ;
534
+ }
535
+ .project-select {
536
+ width : 200px ;
537
+ }
538
+ @media screen and (max-width : 700px ) {
539
+ .wi-child-element {
540
+ display : inline-flex;
541
+ flex-direction : column;
542
+ width : 100% ;
543
+ }
544
+ .wi-trash {
545
+ display : inline;
546
+ }
547
+ .wi-child-duration {
548
+ text-align : left;
549
+ }
550
+ .wi-child {
551
+ border-bottom : 2px var (--color-background-darker ) solid;
552
+ }
553
+ .tags-select {
554
+ width : auto;
555
+ }
556
+ .project-select {
557
+ width : auto;
558
+ }
559
+ .wi-play {
560
+ display : table;
561
+ margin : 0 auto;
562
+ }
563
+
564
+
530
565
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ var moment = require("moment");
5
5
require ( "jqueryui" ) ;
6
6
//require("jqueryui/jquery-ui.css");
7
7
//import 'select2/dist/js/select2.full.js'
8
- import 'select2/dist/js/select2.js'
8
+ import 'select2/dist/js/select2.full. js'
9
9
require ( 'select2/dist/css/select2.css' ) ;
10
10
require ( 'daterangepicker/daterangepicker.css' ) ;
11
11
require ( '../../css/style.css' ) ;
@@ -424,7 +424,7 @@ function() {
424
424
425
425
426
426
$ ( this ) . select2 ( {
427
- width : '200px ',
427
+ containerCssClass : 'project-select ',
428
428
escapeMarkup : function ( markup ) { return markup ; } ,
429
429
placeholder : "<span class='fas fa-folder'></span>" ,
430
430
allowClear : true ,
@@ -483,7 +483,7 @@ function() {
483
483
484
484
$ ( this ) . select2 ( {
485
485
tags : true ,
486
- width : '200px ',
486
+ containerCssClass : 'tags-select ',
487
487
placeholder : "Select tags..." ,
488
488
allowClear : true ,
489
489
You can’t perform that action at this time.
0 commit comments