Changeset 2640317
- Timestamp:
- 12/07/2021 01:31:47 AM (4 years ago)
- Location:
- code9/trunk
- Files:
-
- 2 added
- 2 deleted
- 2 edited
-
assets/c9_static.1.0.1.min.css (added)
-
assets/c9_static.1.0.1.min.js (added)
-
assets/c9_static.min.css (deleted)
-
assets/c9_static.min.js (deleted)
-
assets/code9.css (modified) (8 diffs)
-
page/dashboard.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
code9/trunk/assets/code9.css
r2615536 r2640317 13 13 } 14 14 15 .c9-display-block { 16 display: block; 17 } 18 15 19 .c9-link { 16 20 cursor: pointer; … … 30 34 } 31 35 36 .c9-text-dark { 37 color: #1d2327; 38 } 39 32 40 .c9-text-uppercase { 33 41 text-transform: uppercase !important; … … 36 44 .c9-text-capitalize { 37 45 text-transform: capitalize !important; 46 } 47 48 .c9-text-lowercase { 49 text-transform: lowercase !important; 38 50 } 39 51 … … 337 349 .c9-loading { 338 350 display: inline-block; 339 width: 30px;340 height: 30px;351 width: 20px; 352 height: 10px; 341 353 } 342 354 … … 344 356 content: " "; 345 357 display: block; 346 width: 24px;347 height: 24px;348 margin: 8px;358 width: 14px; 359 height: 14px; 360 margin: 4px; 349 361 border-radius: 50%; 350 362 border: 3px solid #CCC; … … 359 371 position: absolute; 360 372 display: none; 373 margin-top: -10px; 374 transition-delay: 2s; 375 transition: margin-top 0.2s linear; 361 376 } 362 377 363 378 .c9-dropdown-trigger:hover > .c9-dropdown-container { 364 379 display: block; 380 margin-top: 0; 381 } 382 383 .material-icons { 384 display: inline-block; 365 385 } 366 386 … … 538 558 } 539 559 #c9-wrap #c9-main td.gridjs-td { 560 transition: background-color 0.2s linear; 540 561 background-color: #393E46; 541 562 border-width: 0; … … 547 568 color: inherit; 548 569 text-decoration: none; 570 } 571 #c9-wrap #c9-main tr.gridjs-tr:hover td.gridjs-td { 572 background-color: #353941; 549 573 } 550 574 #c9-wrap #c9-main .gridjs-wrapper { -
code9/trunk/page/dashboard.php
r2615542 r2640317 5 5 wp_enqueue_style('code9-style', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/code9.css', array(), '1.0.1'); 6 6 wp_enqueue_style('gridjs_mermaid', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/mermaid.min.css'); 7 wp_enqueue_style('code9-static-css', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/c9_static. min.css', array(), '1.0.2');7 wp_enqueue_style('code9-static-css', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/c9_static.1.0.1.min.css', array(), '1.0.2'); 8 8 wp_enqueue_style( 'wp-color-picker' ); 9 9 wp_enqueue_style( 'code-editor' ); … … 11 11 wp_enqueue_script('code9-spa', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/spa.js'); 12 12 wp_enqueue_script('gridjs', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/gridjs.umd.js'); 13 wp_enqueue_script('code9-static-js', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/c9_static. min.js', array(), '1.0.2');13 wp_enqueue_script('code9-static-js', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/c9_static.1.0.1.min.js', array(), '1.0.2'); 14 14 wp_enqueue_script( 'code-editor' ); 15 15 wp_enqueue_script( 'csslint' );
Note: See TracChangeset
for help on using the changeset viewer.