Skip to content

Commit

Permalink
fix(common): incorrectly set current time marker width
Browse files Browse the repository at this point in the history
chore: bla
  • Loading branch information
JoomFX committed Dec 14, 2023
1 parent 0a536bb commit 3a2ac98
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions packages/default/scss/common/_indicators.scss
@@ -1,11 +1,9 @@
@include exports( "common/indicators/current-time" ) {

$kendo-current-time-width: 1px !default;
$kendo-current-time-color: #ff0000 !default;

// Layout
.k-current-time {
width: $kendo-current-time-width;
position: absolute;

&.k-current-time-arrow-left,
Expand Down
2 changes: 0 additions & 2 deletions packages/fluent/scss/core/helpers/_indicators.scss
@@ -1,9 +1,7 @@
$kendo-current-time-width: 1px !default;
$kendo-current-time-color: #ff0000 !default;

// Layout
.k-current-time {
width: var( --kendo-current-time-width, #{$kendo-current-time-width} );
position: absolute;

&.k-current-time-arrow-left,
Expand Down
2 changes: 1 addition & 1 deletion packages/html/src/gantt/tests/gantt.tsx
Expand Up @@ -758,7 +758,7 @@ export default () =>(
<div className="k-gantt-line k-gantt-line-v" style={{ left: "621px", top: "197px", height: "72px" }}></div>
<div className="k-gantt-line k-gantt-line-h" style={{ left: "621px", top: "269px", width: "191px" }}><span className="k-arrow-e"></span></div>
</div>
<div className="k-current-time" style={{ left: "243px", top: "0px", height: "828px" }}></div>
<div className="k-current-time" style={{ left: "243px", top: "0px", width: "1px", height: "828px" }}></div>
</div>
</div>
</div>
Expand Down

0 comments on commit 3a2ac98

Please sign in to comment.