├── CREDITS ├── LEPTON ├── LICENSE ├── __tests__ ├── _has.test.scss ├── accent_color.test.scss ├── color_scheme.test.scss ├── each.test.scss ├── example.scss ├── list.test.scss ├── media.test.scss ├── moz_document.test.scss ├── native_menu.test.scss ├── one_liner.test.scss ├── option.test.scss ├── os.test.scss ├── scss.spec.js └── theme.test.scss ├── css ├── leptonChrome.css └── leptonContent.css ├── docs ├── Omni_ja.md ├── Preference.md ├── Project_Structure.md ├── README.md ├── Restrictions.md ├── Rules.md └── Smart_Bookmarks.md ├── icons ├── add-device.svg ├── addons-logo.svg ├── arrow-between-down.svg ├── arrow-repeat-all.svg ├── arrow-sort-down-lines.svg ├── arrow-swap.svg ├── auto-fit-width.svg ├── blank.svg ├── blue-berror.svg ├── book-add.svg ├── book.svg ├── bookmark-multiple.svg ├── bookmarksMenu-open.svg ├── bookmarksMenu-open2.svg ├── bookmarksToolbar-open.svg ├── broom.svg ├── bug.svg ├── calendar-agenda.svg ├── checkmark-circle.svg ├── code.svg ├── command-frames.svg ├── command-pick.svg ├── command-responsivemode.svg ├── container-openin-16.svg ├── content-view.svg ├── copy-select.svg ├── dashboard.svg ├── developer.svg ├── dismiss-filled.svg ├── document-css.svg ├── document-endnote.svg ├── document-landscape-split-hint.svg ├── document-search.svg ├── drawer-arrow-download.svg ├── edit-copy.svg ├── edit-paste-go.svg ├── edit-paste-search.svg ├── enter-fullscreen.svg ├── eraser.svg ├── error-connection-failure.svg ├── error-malformed-url.svg ├── error-server-not-found.svg ├── error-session-restore.svg ├── error-tab-crashed.svg ├── exit-fullscreen.svg ├── eye-hide.svg ├── eye-show.svg ├── eye-tracking-off.svg ├── filter-dismiss.svg ├── filter-reload.svg ├── fluid.svg ├── folder-globe.svg ├── folder-open.svg ├── folder.svg ├── highlight.svg ├── history-reverse.svg ├── identity-icons-brand.svg ├── image-add.svg ├── image-alt-text.svg ├── image-arrow-counterclockwise.svg ├── image-copy.svg ├── image.svg ├── import-export.svg ├── key-multiple.svg ├── link-square.svg ├── link.svg ├── lock-closed.svg ├── mail-inbox-all.svg ├── mail-inbox.svg ├── merge.svg ├── movetowindow-16.svg ├── new-tab-forward.svg ├── new-tab-multiple.svg ├── new-tab-skip-forward.svg ├── no-search-results.svg ├── panelarrow-vertical-reverse.svg ├── panelarrow-vertical.svg ├── password-hide.svg ├── password.svg ├── paste.svg ├── performance.svg ├── pin-tab.svg ├── play.svg ├── plug-disconnected.svg ├── pocket-outline.svg ├── private-favicon.svg ├── pulse-square.svg ├── quit.svg ├── redo.svg ├── refresh-cw.svg ├── reload-auto.svg ├── reload.svg ├── resize-image.svg ├── resize.svg ├── restore-session.svg ├── screenshot.svg ├── select-all-on.svg ├── send-to-device.svg ├── send.svg ├── share.svg ├── shield-task.svg ├── sign-out.svg ├── sort.svg ├── star-line-horizontal.svg ├── synced-tabs.svg ├── tab-bottom-corner-left-australis-clipped.svg ├── tab-bottom-corner-left-australis.svg ├── tab-bottom-corner-left-chrome-clipped.svg ├── tab-bottom-corner-left-chrome.svg ├── tab-bottom-corner-left-chromeLegacy-clipped.svg ├── tab-bottom-corner-left-chromeLegacy.svg ├── tab-bottom-corner-left-edge-clipped.svg ├── tab-bottom-corner-left-edge.svg ├── tab-bottom-corner-left-wave-clipped.svg ├── tab-bottom-corner-left-wave.svg ├── tab-bottom-corner-left.svg ├── tab-bottom-corner-right-australis-cilpped.svg ├── tab-bottom-corner-right-australis.svg ├── tab-bottom-corner-right-chrome-clipped.svg ├── tab-bottom-corner-right-chrome.svg ├── tab-bottom-corner-right-chromeLegacy-clipped.svg ├── tab-bottom-corner-right-chromeLegacy.svg ├── tab-bottom-corner-right-edge-clipped.svg ├── tab-bottom-corner-right-edge.svg ├── tab-bottom-corner-right-wave-clipped.svg ├── tab-bottom-corner-right-wave.svg ├── tab-bottom-corner-right.svg ├── tab-copy.svg ├── tab-desktop-multiple-bottom.svg ├── tab-multiple.svg ├── tab-unload.svg ├── tab.svg ├── tag-open.svg ├── text-direction-horizontal-ltr.svg ├── text-number-format.svg ├── text-proofing-tools.svg ├── text-sort-ascending.svg ├── time-picker.svg ├── timer10.svg ├── toolbar.svg ├── toolbarButton-download.svg ├── toolbox.svg ├── undo.svg ├── unpin-tab.svg ├── vertical-line.svg ├── video-clip.svg ├── video-snapshot.svg ├── video.svg ├── weather-snowflake.svg ├── welcome-back.svg ├── whatsnew.svg ├── window-dev-tools.svg ├── window.svg └── wrench-filled.svg ├── install.ps1 ├── install.sh ├── macos-native-tabbar.css ├── package.json ├── src ├── autohide │ ├── _back_button.scss │ ├── _bookmarkbar.scss │ ├── _common.scss │ ├── _fill_urlbar.scss │ ├── _forward_button.scss │ ├── _index.scss │ ├── _infobar.scss │ ├── _navbar.scss │ ├── _page_action.scss │ ├── _sidebar.scss │ ├── _tab.scss │ ├── _tabbar.scss │ ├── _toolbar_overlap.scss │ └── sidebar │ │ ├── _overlap.scss │ │ └── _static.scss ├── bookmarkbar │ ├── _index.scss │ └── _multi_row.scss ├── centered │ ├── _bookmarkbar.scss │ ├── _index.scss │ ├── _tab.scss │ ├── _urlbar.scss │ └── tab │ │ ├── _content.scss │ │ ├── _label.scss │ │ └── _layout.scss ├── combined │ ├── _back_forward_button.scss │ ├── _combined_circle_button.scss │ ├── _home_button.scss │ ├── _index.scss │ └── _reload_button.scss ├── compatibility │ ├── _index.scss │ ├── _os.scss │ ├── _others.scss │ └── _theme.scss ├── contents │ ├── _activity_stream.scss │ ├── _compatibility.scss │ ├── _context_menu.scss │ ├── _dark_mode.scss │ ├── _downloads.scss │ ├── _error_page.scss │ ├── _monospace.scss │ ├── _proton_color.scss │ ├── _proton_contents.scss │ ├── _rounding.scss │ ├── _video_player.scss │ ├── dark_mode │ │ ├── _accounts_com.scss │ │ ├── _addons_org.scss │ │ └── _support_org.scss │ └── proton_contents │ │ ├── _about_cache.scss │ │ ├── _about_checkerboard.scss │ │ ├── _about_memory.scss │ │ ├── _about_plugins.scss │ │ ├── _about_preferences.scss │ │ ├── _directory_view.scss │ │ ├── _field_border.scss │ │ ├── _proton_commons.scss │ │ └── _view_source.scss ├── counter │ ├── _bookmark_menu.scss │ ├── _index.scss │ └── _tab.scss ├── decoration │ ├── _animate.scss │ ├── _cursor.scss │ ├── _download_panel.scss │ ├── _field_border.scss │ ├── _index.scss │ ├── _panel_arrow.scss │ └── _panel_button_separator.scss ├── fullscreen │ ├── _index.scss │ ├── _overlap.scss │ └── _show_bookmarkbar.scss ├── hidden │ └── _index.scss ├── icons │ ├── _activity_stream.scss │ ├── _addon_page.scss │ ├── _context_menu.scss │ ├── _global_menu.scss │ ├── _global_menubar.scss │ ├── _index.scss │ ├── _library.scss │ ├── _panel.scss │ ├── context_menu │ │ ├── _content_area.scss │ │ ├── _downloads.scss │ │ ├── _others.scss │ │ ├── _place.scss │ │ └── _tab_toolbar.scss │ ├── fork_browsers │ │ ├── _floorp.scss │ │ ├── _index.scss │ │ ├── _tor_browser.scss │ │ └── _waterfox.scss │ └── layout │ │ ├── _activity_stream.scss │ │ ├── _bookmark_menu.scss │ │ ├── _menu.scss │ │ ├── _menu_common.scss │ │ ├── _menu_contents.scss │ │ └── _panel.scss ├── leptonChrome.scss ├── leptonContent.scss ├── library │ ├── _chrome.scss │ ├── _contents.scss │ ├── _folder_icons.scss │ ├── _menubar.scss │ ├── _proton.scss │ └── _proton_contents.scss ├── navbar │ ├── _as_sidebar.scss │ └── _index.scss ├── others │ ├── _findbar_floating_on_top.scss │ └── _index.scss ├── padding │ ├── _bookmark_menu.scss │ ├── _bookmarkbar.scss │ ├── _drag_space.scss │ ├── _first_tab.scss │ ├── _global_menubar.scss │ ├── _index.scss │ ├── _infobar.scss │ ├── _menu.scss │ ├── _navbar.scss │ ├── _panel.scss │ ├── _panel_header.scss │ ├── _popup_panel.scss │ ├── _tab_padding.scss │ ├── _tabbar_height.scss │ ├── _tabbar_width.scss │ ├── _toolbar_button.scss │ ├── _urlbar.scss │ ├── _urlview_expanding.scss │ └── _urlview_result.scss ├── panel │ ├── _full_width_padding.scss │ ├── _full_width_separator.scss │ ├── _index.scss │ └── _remove_strip.scss ├── rounding │ ├── _dialog.scss │ ├── _index.scss │ ├── _library.scss │ └── _square.scss ├── sidebar │ ├── _index.scss │ └── _overlap.scss ├── tab │ ├── _clipped_tab.scss │ ├── _connect_to_window.scss │ ├── _container_tab.scss │ ├── _crashed_tab.scss │ ├── _index.scss │ ├── _newtab_button.scss │ ├── _picture_in_picture_tab.scss │ ├── _selected_tab.scss │ ├── _sound_tab.scss │ ├── _unload_tab.scss │ ├── _unselected_tab.scss │ ├── clipped_tab │ │ ├── _always_show_tab_icon.scss │ │ ├── _letters_cleary.scss │ │ ├── _pinned_close_button.scss │ │ └── _show_close_button_at_hover.scss │ ├── newtab_button │ │ ├── _looks_like_tab.scss │ │ ├── _proton_like_button.scss │ │ └── _smaller_button.scss │ ├── selected_tab │ │ ├── _bottom_rounded_corner.scss │ │ ├── _bottom_rounded_corner_others.scss │ │ ├── _box_shadow.scss │ │ ├── _color_like_toolbar.scss │ │ ├── _multi_selected.scss │ │ └── _photon_like_contextline.scss │ ├── sound_tab │ │ ├── _hide_label.scss │ │ ├── _show_label.scss │ │ └── _show_with_favicons.scss │ └── unselected_tab │ │ ├── _bar_separator.scss │ │ ├── _dynamic_separator.scss │ │ └── _static_separator.scss ├── tabbar │ ├── _as_titlebar.scss │ ├── _fill_width.scss │ ├── _index.scss │ ├── _layout.scss │ ├── _multi_row.scss │ ├── _on_bottom.scss │ ├── _one_liner.scss │ ├── _unscroll.scss │ └── layout │ │ ├── _navbar_padding.scss │ │ ├── _window_control.scss │ │ └── _window_control_size.scss ├── theme │ ├── _built_in.scss │ ├── _dark_blue_accent.scss │ ├── _dark_blue_color.scss │ ├── _fully_color.scss │ ├── _fully_dark.scss │ ├── _index.scss │ ├── _monospace.scss │ ├── _proton_chrome.scss │ ├── _proton_color.scss │ ├── _system_default_theme.scss │ ├── _waterfox.scss │ ├── proton_chrome │ │ ├── _cert.scss │ │ ├── _library_popup.scss │ │ ├── _page_info.scss │ │ ├── _proton_commons.scss │ │ └── _sanitize_everything.scss │ └── system_default_theme │ │ ├── _gtk.scss │ │ ├── _mac.scss │ │ ├── _urlbar_focus_color.scss │ │ ├── _win10.scss │ │ └── _win7.scss ├── urlview │ ├── _always_show_page_actions.scss │ ├── _as_launcher.scss │ ├── _focus_item_border.scss │ ├── _full_width_padding.scss │ ├── _go_button_when_typing.scss │ ├── _iconbox_as_separator.scss │ ├── _index.scss │ └── _move_icon_to_left.scss └── utils │ ├── _accent_color.scss │ ├── _color_scheme.scss │ ├── _each.scss │ ├── _has.scss │ ├── _list.scss │ ├── _media.scss │ ├── _moz_box.scss │ ├── _moz_document.scss │ ├── _native_menu.scss │ ├── _one_liner.scss │ ├── _option.scss │ ├── _os.scss │ ├── _proton_elements.scss │ ├── _theme.scss │ └── _window_control.scss ├── te6-custom-content.css ├── te6-custom.css ├── user.js ├── userChrome.css ├── userContent.css ├── waterfox.sh └── yarn.lock /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/CREDITS -------------------------------------------------------------------------------- /LEPTON: -------------------------------------------------------------------------------- 1 | [Info] 2 | Branch=master 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/LICENSE -------------------------------------------------------------------------------- /__tests__/_has.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/_has.test.scss -------------------------------------------------------------------------------- /__tests__/accent_color.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/accent_color.test.scss -------------------------------------------------------------------------------- /__tests__/color_scheme.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/color_scheme.test.scss -------------------------------------------------------------------------------- /__tests__/each.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/each.test.scss -------------------------------------------------------------------------------- /__tests__/example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/example.scss -------------------------------------------------------------------------------- /__tests__/list.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/list.test.scss -------------------------------------------------------------------------------- /__tests__/media.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/media.test.scss -------------------------------------------------------------------------------- /__tests__/moz_document.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/moz_document.test.scss -------------------------------------------------------------------------------- /__tests__/native_menu.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/native_menu.test.scss -------------------------------------------------------------------------------- /__tests__/one_liner.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/one_liner.test.scss -------------------------------------------------------------------------------- /__tests__/option.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/option.test.scss -------------------------------------------------------------------------------- /__tests__/os.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/os.test.scss -------------------------------------------------------------------------------- /__tests__/scss.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/scss.spec.js -------------------------------------------------------------------------------- /__tests__/theme.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/__tests__/theme.test.scss -------------------------------------------------------------------------------- /css/leptonChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/css/leptonChrome.css -------------------------------------------------------------------------------- /css/leptonContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/css/leptonContent.css -------------------------------------------------------------------------------- /docs/Omni_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/Omni_ja.md -------------------------------------------------------------------------------- /docs/Preference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/Preference.md -------------------------------------------------------------------------------- /docs/Project_Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/Project_Structure.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Restrictions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/Restrictions.md -------------------------------------------------------------------------------- /docs/Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/Rules.md -------------------------------------------------------------------------------- /docs/Smart_Bookmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/docs/Smart_Bookmarks.md -------------------------------------------------------------------------------- /icons/add-device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/add-device.svg -------------------------------------------------------------------------------- /icons/addons-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/addons-logo.svg -------------------------------------------------------------------------------- /icons/arrow-between-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/arrow-between-down.svg -------------------------------------------------------------------------------- /icons/arrow-repeat-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/arrow-repeat-all.svg -------------------------------------------------------------------------------- /icons/arrow-sort-down-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/arrow-sort-down-lines.svg -------------------------------------------------------------------------------- /icons/arrow-swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/arrow-swap.svg -------------------------------------------------------------------------------- /icons/auto-fit-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/auto-fit-width.svg -------------------------------------------------------------------------------- /icons/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/blank.svg -------------------------------------------------------------------------------- /icons/blue-berror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/blue-berror.svg -------------------------------------------------------------------------------- /icons/book-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/book-add.svg -------------------------------------------------------------------------------- /icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/book.svg -------------------------------------------------------------------------------- /icons/bookmark-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/bookmark-multiple.svg -------------------------------------------------------------------------------- /icons/bookmarksMenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/bookmarksMenu-open.svg -------------------------------------------------------------------------------- /icons/bookmarksMenu-open2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/bookmarksMenu-open2.svg -------------------------------------------------------------------------------- /icons/bookmarksToolbar-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/bookmarksToolbar-open.svg -------------------------------------------------------------------------------- /icons/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/broom.svg -------------------------------------------------------------------------------- /icons/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/bug.svg -------------------------------------------------------------------------------- /icons/calendar-agenda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/calendar-agenda.svg -------------------------------------------------------------------------------- /icons/checkmark-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/checkmark-circle.svg -------------------------------------------------------------------------------- /icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/code.svg -------------------------------------------------------------------------------- /icons/command-frames.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/command-frames.svg -------------------------------------------------------------------------------- /icons/command-pick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/command-pick.svg -------------------------------------------------------------------------------- /icons/command-responsivemode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/command-responsivemode.svg -------------------------------------------------------------------------------- /icons/container-openin-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/container-openin-16.svg -------------------------------------------------------------------------------- /icons/content-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/content-view.svg -------------------------------------------------------------------------------- /icons/copy-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/copy-select.svg -------------------------------------------------------------------------------- /icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/dashboard.svg -------------------------------------------------------------------------------- /icons/developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/developer.svg -------------------------------------------------------------------------------- /icons/dismiss-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/dismiss-filled.svg -------------------------------------------------------------------------------- /icons/document-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/document-css.svg -------------------------------------------------------------------------------- /icons/document-endnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/document-endnote.svg -------------------------------------------------------------------------------- /icons/document-landscape-split-hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/document-landscape-split-hint.svg -------------------------------------------------------------------------------- /icons/document-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/document-search.svg -------------------------------------------------------------------------------- /icons/drawer-arrow-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/drawer-arrow-download.svg -------------------------------------------------------------------------------- /icons/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/edit-copy.svg -------------------------------------------------------------------------------- /icons/edit-paste-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/edit-paste-go.svg -------------------------------------------------------------------------------- /icons/edit-paste-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/edit-paste-search.svg -------------------------------------------------------------------------------- /icons/enter-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/enter-fullscreen.svg -------------------------------------------------------------------------------- /icons/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/eraser.svg -------------------------------------------------------------------------------- /icons/error-connection-failure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/error-connection-failure.svg -------------------------------------------------------------------------------- /icons/error-malformed-url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/error-malformed-url.svg -------------------------------------------------------------------------------- /icons/error-server-not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/error-server-not-found.svg -------------------------------------------------------------------------------- /icons/error-session-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/error-session-restore.svg -------------------------------------------------------------------------------- /icons/error-tab-crashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/error-tab-crashed.svg -------------------------------------------------------------------------------- /icons/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/exit-fullscreen.svg -------------------------------------------------------------------------------- /icons/eye-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/eye-hide.svg -------------------------------------------------------------------------------- /icons/eye-show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/eye-show.svg -------------------------------------------------------------------------------- /icons/eye-tracking-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/eye-tracking-off.svg -------------------------------------------------------------------------------- /icons/filter-dismiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/filter-dismiss.svg -------------------------------------------------------------------------------- /icons/filter-reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/filter-reload.svg -------------------------------------------------------------------------------- /icons/fluid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/fluid.svg -------------------------------------------------------------------------------- /icons/folder-globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/folder-globe.svg -------------------------------------------------------------------------------- /icons/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/folder-open.svg -------------------------------------------------------------------------------- /icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/folder.svg -------------------------------------------------------------------------------- /icons/highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/highlight.svg -------------------------------------------------------------------------------- /icons/history-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/history-reverse.svg -------------------------------------------------------------------------------- /icons/identity-icons-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/identity-icons-brand.svg -------------------------------------------------------------------------------- /icons/image-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/image-add.svg -------------------------------------------------------------------------------- /icons/image-alt-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/image-alt-text.svg -------------------------------------------------------------------------------- /icons/image-arrow-counterclockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/image-arrow-counterclockwise.svg -------------------------------------------------------------------------------- /icons/image-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/image-copy.svg -------------------------------------------------------------------------------- /icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/image.svg -------------------------------------------------------------------------------- /icons/import-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/import-export.svg -------------------------------------------------------------------------------- /icons/key-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/key-multiple.svg -------------------------------------------------------------------------------- /icons/link-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/link-square.svg -------------------------------------------------------------------------------- /icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/link.svg -------------------------------------------------------------------------------- /icons/lock-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/lock-closed.svg -------------------------------------------------------------------------------- /icons/mail-inbox-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/mail-inbox-all.svg -------------------------------------------------------------------------------- /icons/mail-inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/mail-inbox.svg -------------------------------------------------------------------------------- /icons/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/merge.svg -------------------------------------------------------------------------------- /icons/movetowindow-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/movetowindow-16.svg -------------------------------------------------------------------------------- /icons/new-tab-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/new-tab-forward.svg -------------------------------------------------------------------------------- /icons/new-tab-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/new-tab-multiple.svg -------------------------------------------------------------------------------- /icons/new-tab-skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/new-tab-skip-forward.svg -------------------------------------------------------------------------------- /icons/no-search-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/no-search-results.svg -------------------------------------------------------------------------------- /icons/panelarrow-vertical-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/panelarrow-vertical-reverse.svg -------------------------------------------------------------------------------- /icons/panelarrow-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/panelarrow-vertical.svg -------------------------------------------------------------------------------- /icons/password-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/password-hide.svg -------------------------------------------------------------------------------- /icons/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/password.svg -------------------------------------------------------------------------------- /icons/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/paste.svg -------------------------------------------------------------------------------- /icons/performance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/performance.svg -------------------------------------------------------------------------------- /icons/pin-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/pin-tab.svg -------------------------------------------------------------------------------- /icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/play.svg -------------------------------------------------------------------------------- /icons/plug-disconnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/plug-disconnected.svg -------------------------------------------------------------------------------- /icons/pocket-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/pocket-outline.svg -------------------------------------------------------------------------------- /icons/private-favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/private-favicon.svg -------------------------------------------------------------------------------- /icons/pulse-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/pulse-square.svg -------------------------------------------------------------------------------- /icons/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/quit.svg -------------------------------------------------------------------------------- /icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/redo.svg -------------------------------------------------------------------------------- /icons/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/refresh-cw.svg -------------------------------------------------------------------------------- /icons/reload-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/reload-auto.svg -------------------------------------------------------------------------------- /icons/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/reload.svg -------------------------------------------------------------------------------- /icons/resize-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/resize-image.svg -------------------------------------------------------------------------------- /icons/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/resize.svg -------------------------------------------------------------------------------- /icons/restore-session.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/restore-session.svg -------------------------------------------------------------------------------- /icons/screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/screenshot.svg -------------------------------------------------------------------------------- /icons/select-all-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/select-all-on.svg -------------------------------------------------------------------------------- /icons/send-to-device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/send-to-device.svg -------------------------------------------------------------------------------- /icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/send.svg -------------------------------------------------------------------------------- /icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/share.svg -------------------------------------------------------------------------------- /icons/shield-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/shield-task.svg -------------------------------------------------------------------------------- /icons/sign-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/sign-out.svg -------------------------------------------------------------------------------- /icons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/sort.svg -------------------------------------------------------------------------------- /icons/star-line-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/star-line-horizontal.svg -------------------------------------------------------------------------------- /icons/synced-tabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/synced-tabs.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-australis-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-australis-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-australis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-australis.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-chrome-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-chrome-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-chrome.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-chromeLegacy-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-chromeLegacy-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-chromeLegacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-chromeLegacy.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-edge-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-edge-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-edge.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-wave-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-wave-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left-wave.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-left.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-australis-cilpped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-australis-cilpped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-australis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-australis.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-chrome-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-chrome-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-chrome.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-chromeLegacy-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-chromeLegacy-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-chromeLegacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-chromeLegacy.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-edge-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-edge-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-edge.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-wave-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-wave-clipped.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right-wave.svg -------------------------------------------------------------------------------- /icons/tab-bottom-corner-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-bottom-corner-right.svg -------------------------------------------------------------------------------- /icons/tab-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-copy.svg -------------------------------------------------------------------------------- /icons/tab-desktop-multiple-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-desktop-multiple-bottom.svg -------------------------------------------------------------------------------- /icons/tab-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-multiple.svg -------------------------------------------------------------------------------- /icons/tab-unload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab-unload.svg -------------------------------------------------------------------------------- /icons/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tab.svg -------------------------------------------------------------------------------- /icons/tag-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/tag-open.svg -------------------------------------------------------------------------------- /icons/text-direction-horizontal-ltr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/text-direction-horizontal-ltr.svg -------------------------------------------------------------------------------- /icons/text-number-format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/text-number-format.svg -------------------------------------------------------------------------------- /icons/text-proofing-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/text-proofing-tools.svg -------------------------------------------------------------------------------- /icons/text-sort-ascending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/text-sort-ascending.svg -------------------------------------------------------------------------------- /icons/time-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/time-picker.svg -------------------------------------------------------------------------------- /icons/timer10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/timer10.svg -------------------------------------------------------------------------------- /icons/toolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/toolbar.svg -------------------------------------------------------------------------------- /icons/toolbarButton-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/toolbarButton-download.svg -------------------------------------------------------------------------------- /icons/toolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/toolbox.svg -------------------------------------------------------------------------------- /icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/undo.svg -------------------------------------------------------------------------------- /icons/unpin-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/unpin-tab.svg -------------------------------------------------------------------------------- /icons/vertical-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/vertical-line.svg -------------------------------------------------------------------------------- /icons/video-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/video-clip.svg -------------------------------------------------------------------------------- /icons/video-snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/video-snapshot.svg -------------------------------------------------------------------------------- /icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/video.svg -------------------------------------------------------------------------------- /icons/weather-snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/weather-snowflake.svg -------------------------------------------------------------------------------- /icons/welcome-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/welcome-back.svg -------------------------------------------------------------------------------- /icons/whatsnew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/whatsnew.svg -------------------------------------------------------------------------------- /icons/window-dev-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/window-dev-tools.svg -------------------------------------------------------------------------------- /icons/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/window.svg -------------------------------------------------------------------------------- /icons/wrench-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/icons/wrench-filled.svg -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/install.sh -------------------------------------------------------------------------------- /macos-native-tabbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/macos-native-tabbar.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/package.json -------------------------------------------------------------------------------- /src/autohide/_back_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_back_button.scss -------------------------------------------------------------------------------- /src/autohide/_bookmarkbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_bookmarkbar.scss -------------------------------------------------------------------------------- /src/autohide/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_common.scss -------------------------------------------------------------------------------- /src/autohide/_fill_urlbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_fill_urlbar.scss -------------------------------------------------------------------------------- /src/autohide/_forward_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_forward_button.scss -------------------------------------------------------------------------------- /src/autohide/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_index.scss -------------------------------------------------------------------------------- /src/autohide/_infobar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_infobar.scss -------------------------------------------------------------------------------- /src/autohide/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_navbar.scss -------------------------------------------------------------------------------- /src/autohide/_page_action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_page_action.scss -------------------------------------------------------------------------------- /src/autohide/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_sidebar.scss -------------------------------------------------------------------------------- /src/autohide/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_tab.scss -------------------------------------------------------------------------------- /src/autohide/_tabbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_tabbar.scss -------------------------------------------------------------------------------- /src/autohide/_toolbar_overlap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/_toolbar_overlap.scss -------------------------------------------------------------------------------- /src/autohide/sidebar/_overlap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/sidebar/_overlap.scss -------------------------------------------------------------------------------- /src/autohide/sidebar/_static.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/autohide/sidebar/_static.scss -------------------------------------------------------------------------------- /src/bookmarkbar/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/bookmarkbar/_index.scss -------------------------------------------------------------------------------- /src/bookmarkbar/_multi_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/bookmarkbar/_multi_row.scss -------------------------------------------------------------------------------- /src/centered/_bookmarkbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/centered/_bookmarkbar.scss -------------------------------------------------------------------------------- /src/centered/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/centered/_index.scss -------------------------------------------------------------------------------- /src/centered/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/centered/_tab.scss -------------------------------------------------------------------------------- /src/centered/_urlbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/centered/_urlbar.scss -------------------------------------------------------------------------------- /src/centered/tab/_content.scss: -------------------------------------------------------------------------------- 1 | .tab-icon-stack { 2 | @include BoxFlex(1); 3 | justify-content: end; 4 | } 5 | -------------------------------------------------------------------------------- /src/centered/tab/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/centered/tab/_label.scss -------------------------------------------------------------------------------- /src/centered/tab/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/centered/tab/_layout.scss -------------------------------------------------------------------------------- /src/combined/_back_forward_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/combined/_back_forward_button.scss -------------------------------------------------------------------------------- /src/combined/_combined_circle_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/combined/_combined_circle_button.scss -------------------------------------------------------------------------------- /src/combined/_home_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/combined/_home_button.scss -------------------------------------------------------------------------------- /src/combined/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/combined/_index.scss -------------------------------------------------------------------------------- /src/combined/_reload_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/combined/_reload_button.scss -------------------------------------------------------------------------------- /src/compatibility/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/compatibility/_index.scss -------------------------------------------------------------------------------- /src/compatibility/_os.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/compatibility/_os.scss -------------------------------------------------------------------------------- /src/compatibility/_others.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/compatibility/_others.scss -------------------------------------------------------------------------------- /src/compatibility/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/compatibility/_theme.scss -------------------------------------------------------------------------------- /src/contents/_activity_stream.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_activity_stream.scss -------------------------------------------------------------------------------- /src/contents/_compatibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_compatibility.scss -------------------------------------------------------------------------------- /src/contents/_context_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_context_menu.scss -------------------------------------------------------------------------------- /src/contents/_dark_mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_dark_mode.scss -------------------------------------------------------------------------------- /src/contents/_downloads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_downloads.scss -------------------------------------------------------------------------------- /src/contents/_error_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_error_page.scss -------------------------------------------------------------------------------- /src/contents/_monospace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_monospace.scss -------------------------------------------------------------------------------- /src/contents/_proton_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_proton_color.scss -------------------------------------------------------------------------------- /src/contents/_proton_contents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_proton_contents.scss -------------------------------------------------------------------------------- /src/contents/_rounding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_rounding.scss -------------------------------------------------------------------------------- /src/contents/_video_player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/_video_player.scss -------------------------------------------------------------------------------- /src/contents/dark_mode/_accounts_com.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/dark_mode/_accounts_com.scss -------------------------------------------------------------------------------- /src/contents/dark_mode/_addons_org.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/dark_mode/_addons_org.scss -------------------------------------------------------------------------------- /src/contents/dark_mode/_support_org.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/dark_mode/_support_org.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_about_cache.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_about_cache.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_about_checkerboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_about_checkerboard.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_about_memory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_about_memory.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_about_plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_about_plugins.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_about_preferences.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_about_preferences.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_directory_view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_directory_view.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_field_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_field_border.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_proton_commons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_proton_commons.scss -------------------------------------------------------------------------------- /src/contents/proton_contents/_view_source.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/contents/proton_contents/_view_source.scss -------------------------------------------------------------------------------- /src/counter/_bookmark_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/counter/_bookmark_menu.scss -------------------------------------------------------------------------------- /src/counter/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/counter/_index.scss -------------------------------------------------------------------------------- /src/counter/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/counter/_tab.scss -------------------------------------------------------------------------------- /src/decoration/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_animate.scss -------------------------------------------------------------------------------- /src/decoration/_cursor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_cursor.scss -------------------------------------------------------------------------------- /src/decoration/_download_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_download_panel.scss -------------------------------------------------------------------------------- /src/decoration/_field_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_field_border.scss -------------------------------------------------------------------------------- /src/decoration/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_index.scss -------------------------------------------------------------------------------- /src/decoration/_panel_arrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_panel_arrow.scss -------------------------------------------------------------------------------- /src/decoration/_panel_button_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/decoration/_panel_button_separator.scss -------------------------------------------------------------------------------- /src/fullscreen/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/fullscreen/_index.scss -------------------------------------------------------------------------------- /src/fullscreen/_overlap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/fullscreen/_overlap.scss -------------------------------------------------------------------------------- /src/fullscreen/_show_bookmarkbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/fullscreen/_show_bookmarkbar.scss -------------------------------------------------------------------------------- /src/hidden/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/hidden/_index.scss -------------------------------------------------------------------------------- /src/icons/_activity_stream.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_activity_stream.scss -------------------------------------------------------------------------------- /src/icons/_addon_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_addon_page.scss -------------------------------------------------------------------------------- /src/icons/_context_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_context_menu.scss -------------------------------------------------------------------------------- /src/icons/_global_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_global_menu.scss -------------------------------------------------------------------------------- /src/icons/_global_menubar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_global_menubar.scss -------------------------------------------------------------------------------- /src/icons/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_index.scss -------------------------------------------------------------------------------- /src/icons/_library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_library.scss -------------------------------------------------------------------------------- /src/icons/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/_panel.scss -------------------------------------------------------------------------------- /src/icons/context_menu/_content_area.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/context_menu/_content_area.scss -------------------------------------------------------------------------------- /src/icons/context_menu/_downloads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/context_menu/_downloads.scss -------------------------------------------------------------------------------- /src/icons/context_menu/_others.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/context_menu/_others.scss -------------------------------------------------------------------------------- /src/icons/context_menu/_place.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/context_menu/_place.scss -------------------------------------------------------------------------------- /src/icons/context_menu/_tab_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/context_menu/_tab_toolbar.scss -------------------------------------------------------------------------------- /src/icons/fork_browsers/_floorp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/fork_browsers/_floorp.scss -------------------------------------------------------------------------------- /src/icons/fork_browsers/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/fork_browsers/_index.scss -------------------------------------------------------------------------------- /src/icons/fork_browsers/_tor_browser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/fork_browsers/_tor_browser.scss -------------------------------------------------------------------------------- /src/icons/fork_browsers/_waterfox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/fork_browsers/_waterfox.scss -------------------------------------------------------------------------------- /src/icons/layout/_activity_stream.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/layout/_activity_stream.scss -------------------------------------------------------------------------------- /src/icons/layout/_bookmark_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/layout/_bookmark_menu.scss -------------------------------------------------------------------------------- /src/icons/layout/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/layout/_menu.scss -------------------------------------------------------------------------------- /src/icons/layout/_menu_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/layout/_menu_common.scss -------------------------------------------------------------------------------- /src/icons/layout/_menu_contents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/layout/_menu_contents.scss -------------------------------------------------------------------------------- /src/icons/layout/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/icons/layout/_panel.scss -------------------------------------------------------------------------------- /src/leptonChrome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/leptonChrome.scss -------------------------------------------------------------------------------- /src/leptonContent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/leptonContent.scss -------------------------------------------------------------------------------- /src/library/_chrome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/library/_chrome.scss -------------------------------------------------------------------------------- /src/library/_contents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/library/_contents.scss -------------------------------------------------------------------------------- /src/library/_folder_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/library/_folder_icons.scss -------------------------------------------------------------------------------- /src/library/_menubar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/library/_menubar.scss -------------------------------------------------------------------------------- /src/library/_proton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/library/_proton.scss -------------------------------------------------------------------------------- /src/library/_proton_contents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/library/_proton_contents.scss -------------------------------------------------------------------------------- /src/navbar/_as_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/navbar/_as_sidebar.scss -------------------------------------------------------------------------------- /src/navbar/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/navbar/_index.scss -------------------------------------------------------------------------------- /src/others/_findbar_floating_on_top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/others/_findbar_floating_on_top.scss -------------------------------------------------------------------------------- /src/others/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/others/_index.scss -------------------------------------------------------------------------------- /src/padding/_bookmark_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_bookmark_menu.scss -------------------------------------------------------------------------------- /src/padding/_bookmarkbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_bookmarkbar.scss -------------------------------------------------------------------------------- /src/padding/_drag_space.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_drag_space.scss -------------------------------------------------------------------------------- /src/padding/_first_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_first_tab.scss -------------------------------------------------------------------------------- /src/padding/_global_menubar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_global_menubar.scss -------------------------------------------------------------------------------- /src/padding/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_index.scss -------------------------------------------------------------------------------- /src/padding/_infobar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_infobar.scss -------------------------------------------------------------------------------- /src/padding/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_menu.scss -------------------------------------------------------------------------------- /src/padding/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_navbar.scss -------------------------------------------------------------------------------- /src/padding/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_panel.scss -------------------------------------------------------------------------------- /src/padding/_panel_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_panel_header.scss -------------------------------------------------------------------------------- /src/padding/_popup_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_popup_panel.scss -------------------------------------------------------------------------------- /src/padding/_tab_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_tab_padding.scss -------------------------------------------------------------------------------- /src/padding/_tabbar_height.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_tabbar_height.scss -------------------------------------------------------------------------------- /src/padding/_tabbar_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_tabbar_width.scss -------------------------------------------------------------------------------- /src/padding/_toolbar_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_toolbar_button.scss -------------------------------------------------------------------------------- /src/padding/_urlbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_urlbar.scss -------------------------------------------------------------------------------- /src/padding/_urlview_expanding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_urlview_expanding.scss -------------------------------------------------------------------------------- /src/padding/_urlview_result.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/padding/_urlview_result.scss -------------------------------------------------------------------------------- /src/panel/_full_width_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/panel/_full_width_padding.scss -------------------------------------------------------------------------------- /src/panel/_full_width_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/panel/_full_width_separator.scss -------------------------------------------------------------------------------- /src/panel/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/panel/_index.scss -------------------------------------------------------------------------------- /src/panel/_remove_strip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/panel/_remove_strip.scss -------------------------------------------------------------------------------- /src/rounding/_dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/rounding/_dialog.scss -------------------------------------------------------------------------------- /src/rounding/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/rounding/_index.scss -------------------------------------------------------------------------------- /src/rounding/_library.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/rounding/_library.scss -------------------------------------------------------------------------------- /src/rounding/_square.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/rounding/_square.scss -------------------------------------------------------------------------------- /src/sidebar/_index.scss: -------------------------------------------------------------------------------- 1 | @import "overlap"; 2 | -------------------------------------------------------------------------------- /src/sidebar/_overlap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/sidebar/_overlap.scss -------------------------------------------------------------------------------- /src/tab/_clipped_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_clipped_tab.scss -------------------------------------------------------------------------------- /src/tab/_connect_to_window.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_connect_to_window.scss -------------------------------------------------------------------------------- /src/tab/_container_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_container_tab.scss -------------------------------------------------------------------------------- /src/tab/_crashed_tab.scss: -------------------------------------------------------------------------------- 1 | .tab-icon-image[crashed] { 2 | display: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/tab/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_index.scss -------------------------------------------------------------------------------- /src/tab/_newtab_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_newtab_button.scss -------------------------------------------------------------------------------- /src/tab/_picture_in_picture_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_picture_in_picture_tab.scss -------------------------------------------------------------------------------- /src/tab/_selected_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_selected_tab.scss -------------------------------------------------------------------------------- /src/tab/_sound_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_sound_tab.scss -------------------------------------------------------------------------------- /src/tab/_unload_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_unload_tab.scss -------------------------------------------------------------------------------- /src/tab/_unselected_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/_unselected_tab.scss -------------------------------------------------------------------------------- /src/tab/clipped_tab/_always_show_tab_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/clipped_tab/_always_show_tab_icon.scss -------------------------------------------------------------------------------- /src/tab/clipped_tab/_letters_cleary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/clipped_tab/_letters_cleary.scss -------------------------------------------------------------------------------- /src/tab/clipped_tab/_pinned_close_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/clipped_tab/_pinned_close_button.scss -------------------------------------------------------------------------------- /src/tab/clipped_tab/_show_close_button_at_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/clipped_tab/_show_close_button_at_hover.scss -------------------------------------------------------------------------------- /src/tab/newtab_button/_looks_like_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/newtab_button/_looks_like_tab.scss -------------------------------------------------------------------------------- /src/tab/newtab_button/_proton_like_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/newtab_button/_proton_like_button.scss -------------------------------------------------------------------------------- /src/tab/newtab_button/_smaller_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/newtab_button/_smaller_button.scss -------------------------------------------------------------------------------- /src/tab/selected_tab/_bottom_rounded_corner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/selected_tab/_bottom_rounded_corner.scss -------------------------------------------------------------------------------- /src/tab/selected_tab/_bottom_rounded_corner_others.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/selected_tab/_bottom_rounded_corner_others.scss -------------------------------------------------------------------------------- /src/tab/selected_tab/_box_shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/selected_tab/_box_shadow.scss -------------------------------------------------------------------------------- /src/tab/selected_tab/_color_like_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/selected_tab/_color_like_toolbar.scss -------------------------------------------------------------------------------- /src/tab/selected_tab/_multi_selected.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/selected_tab/_multi_selected.scss -------------------------------------------------------------------------------- /src/tab/selected_tab/_photon_like_contextline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/selected_tab/_photon_like_contextline.scss -------------------------------------------------------------------------------- /src/tab/sound_tab/_hide_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/sound_tab/_hide_label.scss -------------------------------------------------------------------------------- /src/tab/sound_tab/_show_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/sound_tab/_show_label.scss -------------------------------------------------------------------------------- /src/tab/sound_tab/_show_with_favicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/sound_tab/_show_with_favicons.scss -------------------------------------------------------------------------------- /src/tab/unselected_tab/_bar_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/unselected_tab/_bar_separator.scss -------------------------------------------------------------------------------- /src/tab/unselected_tab/_dynamic_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/unselected_tab/_dynamic_separator.scss -------------------------------------------------------------------------------- /src/tab/unselected_tab/_static_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tab/unselected_tab/_static_separator.scss -------------------------------------------------------------------------------- /src/tabbar/_as_titlebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_as_titlebar.scss -------------------------------------------------------------------------------- /src/tabbar/_fill_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_fill_width.scss -------------------------------------------------------------------------------- /src/tabbar/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_index.scss -------------------------------------------------------------------------------- /src/tabbar/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_layout.scss -------------------------------------------------------------------------------- /src/tabbar/_multi_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_multi_row.scss -------------------------------------------------------------------------------- /src/tabbar/_on_bottom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_on_bottom.scss -------------------------------------------------------------------------------- /src/tabbar/_one_liner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_one_liner.scss -------------------------------------------------------------------------------- /src/tabbar/_unscroll.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/_unscroll.scss -------------------------------------------------------------------------------- /src/tabbar/layout/_navbar_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/layout/_navbar_padding.scss -------------------------------------------------------------------------------- /src/tabbar/layout/_window_control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/layout/_window_control.scss -------------------------------------------------------------------------------- /src/tabbar/layout/_window_control_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/tabbar/layout/_window_control_size.scss -------------------------------------------------------------------------------- /src/theme/_built_in.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_built_in.scss -------------------------------------------------------------------------------- /src/theme/_dark_blue_accent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_dark_blue_accent.scss -------------------------------------------------------------------------------- /src/theme/_dark_blue_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_dark_blue_color.scss -------------------------------------------------------------------------------- /src/theme/_fully_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_fully_color.scss -------------------------------------------------------------------------------- /src/theme/_fully_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_fully_dark.scss -------------------------------------------------------------------------------- /src/theme/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_index.scss -------------------------------------------------------------------------------- /src/theme/_monospace.scss: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: -moz-fixed; 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/_proton_chrome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_proton_chrome.scss -------------------------------------------------------------------------------- /src/theme/_proton_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_proton_color.scss -------------------------------------------------------------------------------- /src/theme/_system_default_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_system_default_theme.scss -------------------------------------------------------------------------------- /src/theme/_waterfox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/_waterfox.scss -------------------------------------------------------------------------------- /src/theme/proton_chrome/_cert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/proton_chrome/_cert.scss -------------------------------------------------------------------------------- /src/theme/proton_chrome/_library_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/proton_chrome/_library_popup.scss -------------------------------------------------------------------------------- /src/theme/proton_chrome/_page_info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/proton_chrome/_page_info.scss -------------------------------------------------------------------------------- /src/theme/proton_chrome/_proton_commons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/proton_chrome/_proton_commons.scss -------------------------------------------------------------------------------- /src/theme/proton_chrome/_sanitize_everything.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/proton_chrome/_sanitize_everything.scss -------------------------------------------------------------------------------- /src/theme/system_default_theme/_gtk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/system_default_theme/_gtk.scss -------------------------------------------------------------------------------- /src/theme/system_default_theme/_mac.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/system_default_theme/_mac.scss -------------------------------------------------------------------------------- /src/theme/system_default_theme/_urlbar_focus_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/system_default_theme/_urlbar_focus_color.scss -------------------------------------------------------------------------------- /src/theme/system_default_theme/_win10.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/system_default_theme/_win10.scss -------------------------------------------------------------------------------- /src/theme/system_default_theme/_win7.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/theme/system_default_theme/_win7.scss -------------------------------------------------------------------------------- /src/urlview/_always_show_page_actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_always_show_page_actions.scss -------------------------------------------------------------------------------- /src/urlview/_as_launcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_as_launcher.scss -------------------------------------------------------------------------------- /src/urlview/_focus_item_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_focus_item_border.scss -------------------------------------------------------------------------------- /src/urlview/_full_width_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_full_width_padding.scss -------------------------------------------------------------------------------- /src/urlview/_go_button_when_typing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_go_button_when_typing.scss -------------------------------------------------------------------------------- /src/urlview/_iconbox_as_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_iconbox_as_separator.scss -------------------------------------------------------------------------------- /src/urlview/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_index.scss -------------------------------------------------------------------------------- /src/urlview/_move_icon_to_left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/urlview/_move_icon_to_left.scss -------------------------------------------------------------------------------- /src/utils/_accent_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_accent_color.scss -------------------------------------------------------------------------------- /src/utils/_color_scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_color_scheme.scss -------------------------------------------------------------------------------- /src/utils/_each.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_each.scss -------------------------------------------------------------------------------- /src/utils/_has.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_has.scss -------------------------------------------------------------------------------- /src/utils/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_list.scss -------------------------------------------------------------------------------- /src/utils/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_media.scss -------------------------------------------------------------------------------- /src/utils/_moz_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_moz_box.scss -------------------------------------------------------------------------------- /src/utils/_moz_document.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_moz_document.scss -------------------------------------------------------------------------------- /src/utils/_native_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_native_menu.scss -------------------------------------------------------------------------------- /src/utils/_one_liner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_one_liner.scss -------------------------------------------------------------------------------- /src/utils/_option.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_option.scss -------------------------------------------------------------------------------- /src/utils/_os.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_os.scss -------------------------------------------------------------------------------- /src/utils/_proton_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_proton_elements.scss -------------------------------------------------------------------------------- /src/utils/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_theme.scss -------------------------------------------------------------------------------- /src/utils/_window_control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/src/utils/_window_control.scss -------------------------------------------------------------------------------- /te6-custom-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/te6-custom-content.css -------------------------------------------------------------------------------- /te6-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/te6-custom.css -------------------------------------------------------------------------------- /user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/user.js -------------------------------------------------------------------------------- /userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/userChrome.css -------------------------------------------------------------------------------- /userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/userContent.css -------------------------------------------------------------------------------- /waterfox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/waterfox.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/te6-in/lepton-custom/HEAD/yarn.lock --------------------------------------------------------------------------------