Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
Website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Seth
Website
Compare revisions
f634b8cce318650d893c2a5ff81d9fd7446eb1f5 to de235d9a27594ccfd7ad032ca437dedfc07549f8
You need to sign in or sign up before continuing.
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
seth/ipv4.army
Select target project
No results found
de235d9a27594ccfd7ad032ca437dedfc07549f8
Select Git revision
Branches
main
1 result
Swap
Target
seth/ipv4.army
Select target project
seth/ipv4.army
1 result
f634b8cce318650d893c2a5ff81d9fd7446eb1f5
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source
0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/front/index.css
+5
-9
5 additions, 9 deletions
src/front/index.css
src/front/utilities/socket/index.ts
+1
-4
1 addition, 4 deletions
src/front/utilities/socket/index.ts
with
6 additions
and
13 deletions
src/front/index.css
View file @
de235d9a
...
...
@@ -49,7 +49,6 @@ body {
background
:
#bdf5
;
}
/*
[
class
*=
"shj-lang-"
]
>
div
{
display
:
flex
;
overflow
:
auto
;
...
...
@@ -92,13 +91,12 @@ body {
.shj-syn-class
{
color
:
#f60
;
}
*/
.shj-syn-insert
,
.shj-syn-str
{
color
:
#7d8
;
}
/*
.shj-syn-bool
{
color
:
#3bf
;
}
...
...
@@ -112,13 +110,12 @@ body {
.shj-syn-func
{
color
:
#84f
;
}
*/
.shj-syn-deleted
,
.shj-syn-var
{
color
:
#f44
;
}
/*
.shj-oneline
{
padding
:
12px
10px
;
}
...
...
@@ -129,7 +126,7 @@ body {
border-radius
:
5px
;
padding
:
5px
7px
;
}
*/
[
class
*=
"shj-lang-"
]
{
color
:
#f8f8f2
;
background
:
var
(
--mdui-color-secondary-container
);
...
...
@@ -145,7 +142,6 @@ body {
color
:
#ff5261
;
}
/*
.shj-syn-section
,
.shj-syn-kwd
{
color
:
#ff7cc6
;
...
...
@@ -174,7 +170,7 @@ body {
.shj-syn-oper
{
color
:
#80c6ff
;
}
*/
.shj-syn-str
{
color
:
#4dacfa
;
}
...
...
This diff is collapsed.
Click to expand it.
src/front/utilities/socket/index.ts
View file @
de235d9a
...
...
@@ -34,10 +34,7 @@ class Socket extends EventTarget {
};
this
.
_socket
.
onclose
=
()
=>
{
const
willRefresh
=
confirm
(
"
Realtime Data Connection closed
\n
Would you like to reconnect?
"
);
if
(
willRefresh
)
{
location
.
reload
();
}
};
setInterval
(()
=>
{
...
...
This diff is collapsed.
Click to expand it.