Skip to content

Commit 53e6bab

Browse files
committed
fix: dislay issues in chrome
1 parent 2089207 commit 53e6bab

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

composer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,9 @@
2323
"require": {
2424
"php": "^7.1"
2525
},
26+
"support": {
27+
"issues": "https://github.com/schuhwerk/php-error-log-viewer/issues",
28+
"source": "https://github.com/schuhwerk/php-error-log-viewer"
29+
},
2630
"type": "development-tool"
2731
}

php-error-log-viewer.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
file_path='../../../app/debug.log'
1+
file_path='../../app/debug.log'
22
vscode_path_search='/srv/www/spaces/current/'
33
vscode_path_replace='C:\doll\spaces\'

php-error-log-viewer.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,8 @@ public function ajax_filesize() {
407407
#app { padding: 0 10px; }
408408
.loader {transition: opacity 1s; opacity: 0;}
409409
.loader.visible { transition: opacity 0s; opacity: 1 }
410-
.md-content { max-height: unset !important; min-height: 80vh; max-width: 98vw;}
411-
.md-card { height: calc(100% - 15px); overflow: hidden; }
412-
#app>.md-table {flex-flow: column;}
410+
.md-card { height: calc(100% - 15px); min-width: 90vw; }
411+
.md-content { max-height: unset !important; height: calc(100vh - 15px); max-width: 100%; }
413412
.md-table-cell[error*="Warning"] { background-color: #FFA66F; }
414413
.md-table-cell[error*="Fatal"], .md-table-cell[error*="error"] { background-color: #d05f5f !important}
415414
pre { font-family: 'Roboto Mono', monospace; margin: 0.2rem }

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ You can specify settings in a file named 'php-error-log-viewer.ini' in the same
3333

3434
```ini
3535
;path the the log file. relative to the viewer file.
36-
file_path='../../../app/debug.log'
36+
file_path='../../app/debug.log'
3737
;toggle the linking feature
3838
vscode_links=true
3939
;when you run a virtual machine for development your server path might diverge from your loacal path. this is server.
4040
vscode_path_search='/srv/www/current/'
4141
;
42-
vscode_path_replace='C:\my-repository\'
42+
vscode_path_replace='C:/my-repository/'
4343
```

0 commit comments

Comments
 (0)