Skip to content

Commit cf9eafc

Browse files
committed
Work on bugs
1 parent eb6586b commit cf9eafc

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

manifest.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "1.0.90",
2+
"version": "1.0.91",
33
"manifest_version": 2,
44
"minimum_chrome_version": "51",
5-
"name": "Code Pad IDE",
6-
"short_name": "Code Pad IDE",
7-
"description": "An multi-language code IDE/text-editor crafted for the Chrome OS. Completely free to use and to modify under the GPL!",
5+
"name": "Code Pad Text Editor",
6+
"short_name": "Code Pad Text Editor",
7+
"description": "An multi-language code text-editor crafted for the Chrome OS. Completely free to use and to modify under the GPL!",
88
"author": "Andrew Borg",
99
"homepage_url": "https://github.com/andrewbrg/codepad-chrome-app",
1010
"offline_enabled": true,
@@ -29,6 +29,7 @@
2929
"cfm",
3030
"cgi",
3131
"coffee",
32+
"cnf",
3233
"conf",
3334
"cpp",
3435
"cs",
@@ -74,6 +75,7 @@
7475
"obc",
7576
"patch",
7677
"php",
78+
"phtml",
7779
"pkb",
7880
"pkg",
7981
"pks",

src/css/main.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,11 @@ aside.ui-resizable.ui-resizing {
181181
.ace_editor.ace_autocomplete {
182182
background-color: rgb(52, 58, 64) !important;
183183
color: rgb(154, 157, 160) !important;
184-
font-size: 1.1rem !important;
185-
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2) !important;
184+
font-size: 1.2rem !important;
185+
box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.18) !important;
186186
border-radius: .25rem !important;
187-
border: 2px solid rgba(255, 255, 255, 0.18) !important;
188187
opacity: 0.95 !important;
188+
border: none!important;
189189
}
190190

191191
.ace_tooltip.ace_doc-tooltip {
@@ -452,6 +452,12 @@ select:focus,
452452
.dropdown-menu {
453453
background-color: #262a2e;
454454
border: 1px solid rgba(255, 255, 255, 0.18);
455+
max-height: 650px;
456+
457+
}
458+
459+
.add-file-container .dropdown-menu {
460+
overflow-y: scroll;
455461
}
456462

457463
.dropdown-item,

src/settings/ace.font.sizes.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
{
2+
"1pt": "1",
3+
"2pt": "2",
4+
"3pt": "3",
5+
"4pt": "4",
6+
"5pt": "5",
7+
"6pt": "6",
8+
"7pt": "7",
9+
"8pt": "8",
10+
"9pt": "9",
11+
"10pt": "10",
212
"11pt": "11",
313
"12pt": "12",
414
"13pt": "13",

0 commit comments

Comments
 (0)