Skip to content

Commit d01ea7c

Browse files
authored
Merge pull request #236 from codeitcodes/patch-3
2 parents 19f0fd0 + e74d8b8 commit d01ea7c

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

full.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -886,13 +886,12 @@ body.notransition .sidebar {
886886
margin-left: -18px;
887887
}
888888

889-
.sidebar .header .title-screen .title:not(.scrolling):hover {
889+
body:not(.mobile) .sidebar .header .title-screen .title:not(.scrolling, :has(> .branch-icon:hover)):is(:hover, :active) {
890890
color: #fff;
891891
}
892892

893-
.sidebar .header .title-screen .title:not(.scrolling):active {
893+
.sidebar .header .title-screen .title:not(.scrolling, :has(> .branch-icon:active)):active :is(.back, .logo) {
894894
opacity: .5;
895-
transition: none;
896895
}
897896

898897
.sidebar .header .logo {
@@ -970,7 +969,7 @@ body:not(.mobile) .sidebar .header .title .branch-icon:hover {
970969
}
971970

972971
body:not(.mobile) .sidebar .header .title .branch-icon:active {
973-
opacity: 0.5 !important;
972+
opacity: 0.27 !important;
974973
}
975974

976975
.sidebar .header .title .branch-icon.active {

full.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
<link rel="shortcut icon" href="/icons/android-app-512.png">
4444
<link rel="apple-touch-icon" href="/icons/iphone-app-180.png">
4545

46-
<link rel="apple-touch-startup-image" href="https://codeit.codes/splashes/apple-splash-2048-2732.jpg" media="(orientation: portrait) and (orientation: landscape)">
47-
4846
<link rel="stylesheet" href="/full.css">
4947

5048
<link rel="preconnect" href="https://codeit.codes">

index.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@
4545
<link rel="shortcut icon" href="/icons/android-app-512.png">
4646
<link rel="apple-touch-icon" href="/icons/iphone-app-180.png">
4747

48-
<link rel="apple-touch-startup-image" href="https://codeit.codes/splashes/apple-splash-2048-2732.jpg" media="(orientation: portrait) and (orientation: landscape)">
49-
5048
<link rel="stylesheet" href="/homepage/homepage.css">
5149

5250
</head>

lib/codeit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
codeit.js
4-
v3.1.0
4+
v3.1.1
55
MIT License
66
77
https://codeit.codes
@@ -622,7 +622,7 @@ class CodeitElement extends HTMLElement {
622622
if (selContents.includes('\n')) {
623623

624624
// tab lines in selection
625-
selContents = selContents.split('\n').join('\n' + cd.options.tab);
625+
selContents = cd.options.tab + selContents.split('\n').join('\n' + cd.options.tab);
626626

627627
// insert tabbed selection
628628
cd.deleteCurrentSelection();

worker/client-channel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
// update worker name when updating worker
7-
const WORKER_NAME = 'codeit-worker-v604';
7+
const WORKER_NAME = 'codeit-worker-v606';
88

99

1010
// internal paths

0 commit comments

Comments
 (0)