├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── arc-firefox-theme ├── chrome.manifest ├── chrome │ ├── browser │ │ ├── Info.png │ │ ├── Privacy-16.png │ │ ├── Toolbar-inverted.png │ │ ├── Toolbar-inverted@2x.png │ │ ├── Toolbar-small.png │ │ ├── Toolbar.png │ │ ├── Toolbar@2x.png │ │ ├── aboutNetError.css │ │ ├── aboutProviderDirectory.css │ │ ├── aboutSessionRestore-window-icon.png │ │ ├── aboutSessionRestore.css │ │ ├── aboutSocialError.css │ │ ├── aboutSyncTabs.css │ │ ├── aboutTabCrashed.css │ │ ├── aboutWelcomeBack.css │ │ ├── addons │ │ │ ├── addon-badge.svg │ │ │ ├── addon-install-anchor.svg │ │ │ ├── addon-install-blocked.svg │ │ │ ├── addon-install-confirm.svg │ │ │ ├── addon-install-downloading.svg │ │ │ ├── addon-install-error.svg │ │ │ ├── addon-install-installed.svg │ │ │ ├── addon-install-restart.svg │ │ │ └── addon-install-warning.svg │ │ ├── badge-add-engine.png │ │ ├── badge-add-engine@2x.png │ │ ├── blockedSite.css │ │ ├── browser-lightweightTheme.css │ │ ├── browser.css │ │ ├── cert-error.svg │ │ ├── click-to-play-warning-stripes.png │ │ ├── compacttheme.css │ │ ├── compacttheme │ │ │ ├── loading-inverted.png │ │ │ └── loading-inverted@2x.png │ │ ├── connection-mixed-active-loaded.svg │ │ ├── connection-mixed-passive-loaded.svg │ │ ├── connection-secure.svg │ │ ├── content-contextmenu.svg │ │ ├── controlcenter │ │ │ ├── arrow-subview-back.svg │ │ │ ├── arrow-subview.svg │ │ │ ├── conn-not-secure.svg │ │ │ ├── connection.svg │ │ │ ├── mcb-disabled.svg │ │ │ ├── panel.css │ │ │ ├── permissions.svg │ │ │ ├── tracking-protection.svg │ │ │ ├── warning-gray.svg │ │ │ └── warning-yellow.svg │ │ ├── custom_images │ │ │ ├── connecting.png │ │ │ ├── dark │ │ │ │ ├── loop-tabbar-icons.svg │ │ │ │ ├── loop-toolbar-icons.svg │ │ │ │ ├── navbar-separator.png │ │ │ │ ├── pocket-tabbar-icons.svg │ │ │ │ ├── pocket-toolbar-icons.svg │ │ │ │ ├── tabbar-icons.svg │ │ │ │ ├── tabs │ │ │ │ │ ├── alltabs.svg │ │ │ │ │ ├── new-tab.png │ │ │ │ │ ├── tab-arrow-left.svg │ │ │ │ │ ├── tab-close-active.svg │ │ │ │ │ ├── tab-close-hover.svg │ │ │ │ │ ├── tab-close-inactive.svg │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ ├── tab-end-hover.svg │ │ │ │ │ ├── tab-end.svg │ │ │ │ │ ├── tab-middle-hover.svg │ │ │ │ │ ├── tab-middle.svg │ │ │ │ │ ├── tab-overflow-indicator.png │ │ │ │ │ ├── tab-start-hover.svg │ │ │ │ │ └── tab-start.svg │ │ │ │ ├── toolbar-icons.svg │ │ │ │ └── window-controls │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── close_prelight.svg │ │ │ │ │ ├── close_pressed.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── maximize_prelight.svg │ │ │ │ │ ├── maximize_pressed.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minimize_prelight.svg │ │ │ │ │ └── minimize_pressed.svg │ │ │ ├── darker │ │ │ │ └── tabs │ │ │ │ │ ├── tab-end-hover.svg │ │ │ │ │ ├── tab-end.svg │ │ │ │ │ ├── tab-middle-hover.svg │ │ │ │ │ ├── tab-middle.svg │ │ │ │ │ ├── tab-start-hover.svg │ │ │ │ │ └── tab-start.svg │ │ │ ├── light │ │ │ │ ├── loop-tabbar-icons.svg │ │ │ │ ├── loop-toolbar-icons.svg │ │ │ │ ├── navbar-separator.png │ │ │ │ ├── pocket-tabbar-icons.svg │ │ │ │ ├── pocket-toolbar-icons.svg │ │ │ │ ├── tabbar-icons.svg │ │ │ │ ├── tabs │ │ │ │ │ ├── alltabs.svg │ │ │ │ │ ├── new-tab.png │ │ │ │ │ ├── tab-arrow-left.svg │ │ │ │ │ ├── tab-close-active.svg │ │ │ │ │ ├── tab-close-hover.svg │ │ │ │ │ ├── tab-close-inactive.svg │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ ├── tab-end-hover.svg │ │ │ │ │ ├── tab-end.svg │ │ │ │ │ ├── tab-middle-hover.svg │ │ │ │ │ ├── tab-middle.svg │ │ │ │ │ ├── tab-overflow-indicator.png │ │ │ │ │ ├── tab-start-hover.svg │ │ │ │ │ └── tab-start.svg │ │ │ │ ├── toolbar-icons.svg │ │ │ │ └── window-controls │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── close_prelight.svg │ │ │ │ │ ├── close_pressed.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── maximize_prelight.svg │ │ │ │ │ ├── maximize_pressed.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minimize_prelight.svg │ │ │ │ │ └── minimize_pressed.svg │ │ │ ├── loading.png │ │ │ ├── loop-toolbar-icons-active.svg │ │ │ ├── pocket-toolbar-icons-active.svg │ │ │ └── toolbar-icons-active.svg │ │ ├── customizableui │ │ │ ├── background-noise-toolbar.png │ │ │ ├── customize-illustration-rtl.png │ │ │ ├── customize-illustration-rtl@2x.png │ │ │ ├── customize-illustration.png │ │ │ ├── customize-illustration@2x.png │ │ │ ├── customizeFavicon.ico │ │ │ ├── customizeMode-gridTexture.png │ │ │ ├── customizeMode-separatorHorizontal.png │ │ │ ├── customizeMode-separatorVertical.png │ │ │ ├── info-icon-customizeTip.png │ │ │ ├── info-icon-customizeTip@2x.png │ │ │ ├── menuPanel-customizeFinish.png │ │ │ ├── menuPanel-customizeFinish@2x.png │ │ │ ├── panelUI.css │ │ │ ├── panelarrow-customizeTip.png │ │ │ ├── panelarrow-customizeTip@2x.png │ │ │ ├── subView-arrow-back-inverted-rtl.png │ │ │ ├── subView-arrow-back-inverted-rtl@2x.png │ │ │ ├── subView-arrow-back-inverted.png │ │ │ ├── subView-arrow-back-inverted@2x.png │ │ │ ├── whimsy.png │ │ │ └── whimsy@2x.png │ │ ├── devedition │ │ │ └── urlbar-history-dropmarker.svg │ │ ├── devtools │ │ │ └── common.css │ │ ├── downloads │ │ │ ├── allDownloadsViewOverlay.css │ │ │ ├── contentAreaDownloadsView.css │ │ │ ├── download-blocked.svg │ │ │ ├── download-glow-menuPanel.png │ │ │ ├── download-notification-finish.png │ │ │ ├── download-notification-start.png │ │ │ ├── download-summary.svg │ │ │ └── downloads.css │ │ ├── drm-icon.svg │ │ ├── error-pages.css │ │ ├── favicon-search-16.svg │ │ ├── feeds │ │ │ ├── audioFeedIcon.png │ │ │ ├── audioFeedIcon16.png │ │ │ ├── feedIcon.png │ │ │ ├── feedIcon16.png │ │ │ ├── subscribe.css │ │ │ ├── videoFeedIcon.png │ │ │ └── videoFeedIcon16.png │ │ ├── fullscreen │ │ │ ├── insecure.svg │ │ │ └── secure.svg │ │ ├── fxa │ │ │ ├── android.png │ │ │ ├── android@2x.png │ │ │ ├── default-avatar.svg │ │ │ ├── ios.png │ │ │ ├── ios@2x.png │ │ │ ├── logo.png │ │ │ ├── logo@2x.png │ │ │ ├── sync-illustration.png │ │ │ ├── sync-illustration.svg │ │ │ └── sync-illustration@2x.png │ │ ├── gear.svg │ │ ├── heartbeat-icon.svg │ │ ├── heartbeat-star-lit.svg │ │ ├── heartbeat-star-off.svg │ │ ├── icon-search-64.svg │ │ ├── identity-icon.svg │ │ ├── info.svg │ │ ├── menuPanel-customize.png │ │ ├── menuPanel-customize@2x.png │ │ ├── menuPanel-exit.png │ │ ├── menuPanel-exit@2x.png │ │ ├── menuPanel-help.png │ │ ├── menuPanel-help@2x.png │ │ ├── menuPanel-small.svg │ │ ├── menuPanel.svg │ │ ├── monitor.png │ │ ├── monitor_16-10.png │ │ ├── newtab │ │ │ ├── close.png │ │ │ ├── controls.svg │ │ │ └── newTab.css │ │ ├── notification-icons.svg │ │ ├── page-livemarks.png │ │ ├── pageInfo.css │ │ ├── pageInfo.png │ │ ├── panel-icons.svg │ │ ├── panic-panel │ │ │ ├── header-small.png │ │ │ ├── header-small@2x.png │ │ │ ├── header.png │ │ │ ├── header@2x.png │ │ │ ├── icons.png │ │ │ └── icons@2x.png │ │ ├── places │ │ │ ├── bookmarks-menu-arrow.png │ │ │ ├── bookmarks-notification-finish.png │ │ │ ├── bookmarksMenu.png │ │ │ ├── bookmarksToolbar-menuPanel.png │ │ │ ├── bookmarksToolbar.png │ │ │ ├── calendar.png │ │ │ ├── downloads.png │ │ │ ├── editBookmarkOverlay.css │ │ │ ├── livemark-item.png │ │ │ ├── organizer.css │ │ │ ├── organizer.xml │ │ │ ├── places.css │ │ │ ├── query.png │ │ │ ├── starred48.png │ │ │ ├── tag.png │ │ │ ├── toolbarDropMarker.png │ │ │ ├── unsortedBookmarks.png │ │ │ └── unstarred48.png │ │ ├── preferences │ │ │ ├── alwaysAsk.png │ │ │ ├── applications.css │ │ │ ├── containers.css │ │ │ ├── in-content │ │ │ │ ├── containers.css │ │ │ │ ├── dialog.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── icons.svg │ │ │ │ ├── preferences.css │ │ │ │ └── search.css │ │ │ └── preferences.css │ │ ├── privatebrowsing-mask.png │ │ ├── privatebrowsing │ │ │ ├── aboutPrivateBrowsing.css │ │ │ ├── check.svg │ │ │ ├── favicon.svg │ │ │ ├── private-browsing.svg │ │ │ ├── tracking-protection-off.svg │ │ │ └── tracking-protection.svg │ │ ├── reader-tour.png │ │ ├── reader-tour@2x.png │ │ ├── readerMode.svg │ │ ├── reload-stop-go.png │ │ ├── reload-stop-go@2x.png │ │ ├── sanitizeDialog.css │ │ ├── sass │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── _browser-sass.scss │ │ │ ├── _colors.scss │ │ │ ├── _drawing.scss │ │ │ ├── browser-dark.css │ │ │ ├── browser-dark.scss │ │ │ ├── browser-darker.css │ │ │ ├── browser-darker.scss │ │ │ ├── browser-light.css │ │ │ ├── browser-light.scss │ │ │ ├── extensions │ │ │ │ ├── _loop.scss │ │ │ │ └── _pocket.scss │ │ │ └── parse-sass.sh │ │ ├── search-arrow-go.svg │ │ ├── search-engine-placeholder.png │ │ ├── search-engine-placeholder@2x.png │ │ ├── search-history-icon.svg │ │ ├── search-indicator-badge-add.png │ │ ├── search-indicator-badge-add@2x.png │ │ ├── search-indicator-magnifying-glass.svg │ │ ├── search-indicator.png │ │ ├── search-indicator@2x.png │ │ ├── searchReset.css │ │ ├── searchbar.css │ │ ├── session-restore.svg │ │ ├── setDesktopBackground.css │ │ ├── slowStartup-16.png │ │ ├── social │ │ │ ├── services-16.png │ │ │ └── services-64.png │ │ ├── sync-128.png │ │ ├── sync-16.png │ │ ├── sync-32.png │ │ ├── sync-bg.png │ │ ├── sync-desktopIcon.svg │ │ ├── sync-horizontalbar.png │ │ ├── sync-horizontalbar@2x.png │ │ ├── sync-mobileIcon.svg │ │ ├── sync-notification-24.png │ │ ├── syncCommon.css │ │ ├── syncProgress-horizontalbar.png │ │ ├── syncProgress-horizontalbar@2x.png │ │ ├── syncQuota.css │ │ ├── syncSetup.css │ │ ├── syncedtabs │ │ │ └── sidebar.css │ │ ├── tab-crashed.svg │ │ ├── tabbrowser │ │ │ ├── alltabs-inverted.png │ │ │ ├── alltabs.png │ │ │ ├── connecting.png │ │ │ ├── connecting@2x.png │ │ │ ├── crashed.svg │ │ │ ├── newtab-inverted.svg │ │ │ ├── newtab.svg │ │ │ ├── pendingpaint.png │ │ │ ├── tab-active-middle.png │ │ │ ├── tab-active-middle@2x.png │ │ │ ├── tab-arrow-left-inverted.png │ │ │ ├── tab-arrow-left.png │ │ │ ├── tab-audio-small.svg │ │ │ ├── tab-audio.svg │ │ │ ├── tab-background-end.png │ │ │ ├── tab-background-end@2x.png │ │ │ ├── tab-background-middle.png │ │ │ ├── tab-background-middle@2x.png │ │ │ ├── tab-background-start.png │ │ │ ├── tab-background-start@2x.png │ │ │ ├── tab-overflow-indicator.png │ │ │ ├── tab-selected-end.svg │ │ │ ├── tab-selected-start.svg │ │ │ ├── tab-stroke-end.png │ │ │ ├── tab-stroke-end@2x.png │ │ │ ├── tab-stroke-start.png │ │ │ ├── tab-stroke-start@2x.png │ │ │ └── tabDragIndicator.png │ │ ├── toolbarbutton-dropdown-arrow.png │ │ ├── tracking-protection-16.svg │ │ ├── translating-16.png │ │ ├── translating-16@2x.png │ │ ├── translation-16.png │ │ ├── translation-16@2x.png │ │ ├── undoCloseTab.png │ │ ├── undoCloseTab@2x.png │ │ ├── update-badge-failed.svg │ │ ├── update-badge.svg │ │ ├── urlbar-star.svg │ │ ├── urlbar-tab.svg │ │ ├── warning-white.svg │ │ ├── warning.svg │ │ ├── webRTC-indicator.css │ │ ├── welcome-back.svg │ │ └── wifi.svg │ ├── communicator │ │ └── communicator.css │ ├── global │ │ ├── Filepicker.png │ │ ├── about.css │ │ ├── aboutCache.css │ │ ├── aboutCacheEntry.css │ │ ├── aboutMemory.css │ │ ├── aboutReader.css │ │ ├── aboutReaderContent.css │ │ ├── aboutReaderControls.css │ │ ├── aboutSupport.css │ │ ├── alerts │ │ │ ├── alert-common.css │ │ │ └── alert.css │ │ ├── appPicker.css │ │ ├── arrow.css │ │ ├── arrow │ │ │ ├── arrow-dn-dis.gif │ │ │ ├── arrow-dn-hov.gif │ │ │ ├── arrow-dn-sharp.gif │ │ │ ├── arrow-dn.gif │ │ │ ├── arrow-down.png │ │ │ ├── arrow-lft-dis.gif │ │ │ ├── arrow-lft-sharp-end.gif │ │ │ ├── arrow-lft-sharp.gif │ │ │ ├── arrow-lft.gif │ │ │ ├── arrow-rit-dis.gif │ │ │ ├── arrow-rit-sharp-end.gif │ │ │ ├── arrow-rit-sharp.gif │ │ │ ├── arrow-rit.gif │ │ │ ├── arrow-up-dis.gif │ │ │ ├── arrow-up-hov.gif │ │ │ ├── arrow-up-sharp.gif │ │ │ ├── arrow-up.gif │ │ │ ├── panelarrow-horizontal-themed.svg │ │ │ ├── panelarrow-horizontal.svg │ │ │ ├── panelarrow-vertical-themed.svg │ │ │ └── panelarrow-vertical.svg │ │ ├── autocomplete.css │ │ ├── button.css │ │ ├── checkbox.css │ │ ├── checkbox │ │ │ ├── cbox-check-dis.gif │ │ │ └── cbox-check.gif │ │ ├── colorpicker.css │ │ ├── commonDialog.css │ │ ├── config.css │ │ ├── customizeToolbar.css │ │ ├── datetimeinputpickers.css │ │ ├── datetimepicker.css │ │ ├── datetimepopup.css │ │ ├── dialog.css │ │ ├── dirListing │ │ │ ├── dirListing.css │ │ │ ├── folder.png │ │ │ ├── local.png │ │ │ ├── remote.png │ │ │ └── up.png │ │ ├── dropmarker.css │ │ ├── expander.css │ │ ├── filefield.css │ │ ├── filepicker.css │ │ ├── filters.svg │ │ ├── findBar.css │ │ ├── global.css │ │ ├── globalBindings.xml │ │ ├── groupbox.css │ │ ├── icons │ │ │ ├── Authentication.png │ │ │ ├── Close.gif │ │ │ ├── Error.png │ │ │ ├── Landscape.png │ │ │ ├── Minimize.gif │ │ │ ├── Portrait.png │ │ │ ├── Print-preview.png │ │ │ ├── Question.png │ │ │ ├── Restore.gif │ │ │ ├── Search-close.png │ │ │ ├── Search-glass.png │ │ │ ├── Warning.png │ │ │ ├── autocomplete-search.svg │ │ │ ├── autoscroll.png │ │ │ ├── blacklist_favicon.png │ │ │ ├── blacklist_large.png │ │ │ ├── blocked.svg │ │ │ ├── calendar-arrows.svg │ │ │ ├── close-inverted.png │ │ │ ├── close-inverted@2x.png │ │ │ ├── close.png │ │ │ ├── close.svg │ │ │ ├── close@2x.png │ │ │ ├── collapse.png │ │ │ ├── error-16.png │ │ │ ├── error-64.png │ │ │ ├── expand.png │ │ │ ├── find-arrows.svg │ │ │ ├── folder-item.png │ │ │ ├── info.svg │ │ │ ├── information-16.png │ │ │ ├── information-24.png │ │ │ ├── information-32.png │ │ │ ├── input-clear.svg │ │ │ ├── loading.png │ │ │ ├── loading@2x.png │ │ │ ├── menubutton-dropmarker.svg │ │ │ ├── question-16.png │ │ │ ├── question-64.png │ │ │ ├── resizer-rtl.png │ │ │ ├── resizer.png │ │ │ ├── spinner-arrows.svg │ │ │ ├── sslWarning.png │ │ │ ├── tabprompts-bgtexture.png │ │ │ ├── warning-16.png │ │ │ ├── warning-64.png │ │ │ ├── warning-large.png │ │ │ ├── warning.svg │ │ │ └── windowControls.png │ │ ├── in-content │ │ │ ├── check-partial.svg │ │ │ ├── check.svg │ │ │ ├── common.css │ │ │ ├── dropdown.svg │ │ │ ├── help-glyph.svg │ │ │ ├── info-pages.css │ │ │ └── radio.svg │ │ ├── linkTree.css │ │ ├── listbox.css │ │ ├── media │ │ │ ├── TopLevelImageDocument.css │ │ │ ├── TopLevelVideoDocument.css │ │ │ ├── clicktoplay-bgtexture.png │ │ │ ├── closedCaptionButton.svg │ │ │ ├── error.png │ │ │ ├── fullscreenButton.svg │ │ │ ├── imagedoc-darknoise.png │ │ │ ├── imagedoc-lightnoise.png │ │ │ ├── muteButton.svg │ │ │ ├── pauseButton.svg │ │ │ ├── playButton.svg │ │ │ ├── stalled.png │ │ │ ├── throbber.png │ │ │ ├── videoClickToPlayButton.svg │ │ │ └── videocontrols.css │ │ ├── menu.css │ │ ├── menu │ │ │ ├── shared-menu-check-active.svg │ │ │ ├── shared-menu-check-black.svg │ │ │ ├── shared-menu-check-hover.svg │ │ │ ├── shared-menu-check.png │ │ │ └── shared-menu-check@2x.png │ │ ├── menulist.css │ │ ├── narrate.css │ │ ├── narrate │ │ │ ├── arrow.svg │ │ │ ├── back.svg │ │ │ ├── fast.svg │ │ │ ├── forward.svg │ │ │ ├── slow.svg │ │ │ ├── start.svg │ │ │ └── stop.svg │ │ ├── narrateControls.css │ │ ├── netError.css │ │ ├── notification.css │ │ ├── numberbox.css │ │ ├── passwordmgr.css │ │ ├── popup.css │ │ ├── preferences.css │ │ ├── printPageSetup.css │ │ ├── printPreview.css │ │ ├── progressmeter.css │ │ ├── radio.css │ │ ├── radio │ │ │ ├── radio-check-dis.gif │ │ │ └── radio-check.gif │ │ ├── reader │ │ │ ├── RM-Close-24x24.svg │ │ │ ├── RM-Content-Width-Minus-42x16.svg │ │ │ ├── RM-Content-Width-Plus-44x16.svg │ │ │ ├── RM-Line-Height-Minus-38x14.svg │ │ │ ├── RM-Line-Height-Plus-38x24.svg │ │ │ ├── RM-Minus-24x24.svg │ │ │ ├── RM-Plus-24x24.svg │ │ │ ├── RM-Type-Controls-24x24.svg │ │ │ └── RM-Type-Controls-Arrow.svg │ │ ├── resizer.css │ │ ├── richlistbox.css │ │ ├── scale.css │ │ ├── scale │ │ │ ├── scale-tray-horiz.gif │ │ │ └── scale-tray-vert.gif │ │ ├── scrollbar │ │ │ └── slider.gif │ │ ├── scrollbars.css │ │ ├── scrollbox.css │ │ ├── spinbuttons.css │ │ ├── splitter.css │ │ ├── splitter │ │ │ ├── grip-bottom.gif │ │ │ ├── grip-left.gif │ │ │ ├── grip-right.gif │ │ │ └── grip-top.gif │ │ ├── tabbox.css │ │ ├── tabprompts.css │ │ ├── textbox.css │ │ ├── toolbar.css │ │ ├── toolbar │ │ │ ├── chevron-inverted.png │ │ │ ├── chevron.gif │ │ │ └── spring.png │ │ ├── toolbarbutton.css │ │ ├── tree.css │ │ ├── tree │ │ │ ├── columnpicker.gif │ │ │ ├── sort-asc-classic.png │ │ │ ├── sort-asc.png │ │ │ ├── sort-dsc-classic.png │ │ │ ├── sort-dsc.png │ │ │ ├── twisty-clsd.png │ │ │ └── twisty-open.png │ │ └── wizard.css │ ├── mozapps │ │ ├── aboutNetworking.css │ │ ├── aboutProfiles.css │ │ ├── aboutServiceWorkers.css │ │ ├── downloads │ │ │ ├── downloadButtons.png │ │ │ ├── downloadIcon.png │ │ │ └── unknownContentType.css │ │ ├── extensions │ │ │ ├── about.css │ │ │ ├── alerticon-error.svg │ │ │ ├── alerticon-info-negative.svg │ │ │ ├── alerticon-info-positive.svg │ │ │ ├── alerticon-warning.svg │ │ │ ├── blocklist.css │ │ │ ├── cancel.png │ │ │ ├── category-available.png │ │ │ ├── category-dictionaries.png │ │ │ ├── category-discover.png │ │ │ ├── category-experiments.png │ │ │ ├── category-extensions.svg │ │ │ ├── category-languages.png │ │ │ ├── category-plugins.png │ │ │ ├── category-recent.png │ │ │ ├── category-search.png │ │ │ ├── category-service.png │ │ │ ├── category-themes.png │ │ │ ├── dictionaryGeneric-16.png │ │ │ ├── dictionaryGeneric.png │ │ │ ├── discover-logo.png │ │ │ ├── eula.css │ │ │ ├── experimentGeneric.png │ │ │ ├── extensionGeneric-16.png │ │ │ ├── extensionGeneric.svg │ │ │ ├── extensions.css │ │ │ ├── heart.png │ │ │ ├── localeGeneric.png │ │ │ ├── navigation.png │ │ │ ├── newaddon.css │ │ │ ├── rating-not-won.png │ │ │ ├── rating-won.png │ │ │ ├── themeGeneric-16.png │ │ │ ├── themeGeneric.png │ │ │ ├── update.css │ │ │ └── utilities.svg │ │ ├── formautofill │ │ │ └── requestAutocomplete.css │ │ ├── handling │ │ │ └── handling.css │ │ ├── places │ │ │ ├── defaultFavicon-inverted.png │ │ │ ├── defaultFavicon-inverted@2x.png │ │ │ ├── defaultFavicon.png │ │ │ └── defaultFavicon@2x.png │ │ ├── plugins │ │ │ ├── contentPluginActivate.png │ │ │ ├── contentPluginBlocked.png │ │ │ ├── contentPluginClose.png │ │ │ ├── contentPluginCrashed.png │ │ │ ├── contentPluginStripe.png │ │ │ ├── pluginBlocked-64.png │ │ │ ├── pluginBlocked.png │ │ │ ├── pluginGeneric-16.png │ │ │ ├── pluginGeneric.png │ │ │ ├── pluginHelp-16.png │ │ │ └── pluginProblem.css │ │ ├── profile │ │ │ ├── profileSelection.css │ │ │ └── profileicon.png │ │ ├── update │ │ │ ├── downloadButtons.png │ │ │ └── updates.css │ │ ├── viewsource │ │ │ └── viewsource.css │ │ └── xpinstall │ │ │ └── xpinstallConfirm.css │ └── overrides.sh └── install.rdf ├── autogen.sh ├── configure.ac └── m4 └── arc-enable.m4 /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | .sass-cache/ 3 | 4 | Makefile 5 | Makefile.in 6 | config.log 7 | config.status 8 | configure 9 | install-sh 10 | aclocal.m4 11 | missing 12 | autom4te.cache/ 13 | .idea/ -------------------------------------------------------------------------------- /arc-firefox-theme/chrome.manifest: -------------------------------------------------------------------------------- 1 | skin browser arc-theme chrome/browser/ 2 | skin communicator arc-theme chrome/communicator/ 3 | skin global arc-theme chrome/global/ 4 | skin mozapps arc-theme chrome/mozapps/ 5 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Info.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Privacy-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Privacy-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Toolbar-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Toolbar-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Toolbar-inverted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Toolbar-inverted@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Toolbar-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Toolbar-small.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Toolbar.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/Toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/Toolbar@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/aboutSessionRestore-window-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/aboutSessionRestore-window-icon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/aboutSessionRestore.css: -------------------------------------------------------------------------------- 1 | 2 | .title { 3 | background-image: url("chrome://browser/skin/session-restore.svg"); 4 | } 5 | 6 | treechildren::-moz-tree-image(icon), 7 | treechildren::-moz-tree-image(noicon) { 8 | padding-right: 2px; 9 | margin: 0 2px; 10 | width: 16px; 11 | height: 16px; 12 | } 13 | 14 | treechildren::-moz-tree-image(noicon) { 15 | list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); 16 | } 17 | treechildren::-moz-tree-image(container, noicon) { 18 | list-style-image: url("chrome://browser/skin/aboutSessionRestore-window-icon.png"); 19 | } 20 | 21 | treechildren::-moz-tree-image(checked) { 22 | list-style-image: url("chrome://global/skin/in-content/check.svg#check"); 23 | } 24 | treechildren::-moz-tree-image(checked, selected) { 25 | list-style-image: url("chrome://global/skin/in-content/check.svg#check-inverted"); 26 | } 27 | 28 | treechildren::-moz-tree-image(partial) { 29 | list-style-image: url("chrome://global/skin/in-content/check-partial.svg#check-partial"); 30 | } 31 | treechildren::-moz-tree-image(partial, selected) { 32 | list-style-image: url("chrome://global/skin/in-content/check-partial.svg#check-partial-inverted"); 33 | } 34 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/aboutSocialError.css: -------------------------------------------------------------------------------- 1 | @import url("chrome://global/skin/in-content/common.css"); 2 | 3 | #errorPageContainer { 4 | min-width: 50%; 5 | } 6 | 7 | #errorTitle { 8 | background: url("chrome://global/skin/icons/info.svg") left 0 no-repeat; 9 | background-size: 2em; 10 | padding-inline-start: 3em; 11 | } 12 | 13 | #button-box { 14 | text-align: center; 15 | width: 75%; 16 | margin: 0 auto; 17 | } 18 | 19 | button { 20 | width: auto !important; 21 | min-width: 150px; 22 | } 23 | 24 | @media all and (max-width: 300px) { 25 | body { 26 | padding: 0px 10px; 27 | } 28 | #errorPageContainer { 29 | min-width: 100%; 30 | } 31 | #errorTitle { 32 | background: none; 33 | padding-inline-start: 0 !important; 34 | } 35 | button { 36 | width: auto !important; 37 | min-width: auto !important; 38 | } 39 | } 40 | 41 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/addons/addon-badge.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 19 | 20 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/badge-add-engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/badge-add-engine.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/badge-add-engine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/badge-add-engine@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/click-to-play-warning-stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/click-to-play-warning-stripes.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/compacttheme/loading-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/compacttheme/loading-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/compacttheme/loading-inverted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/compacttheme/loading-inverted@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/connection-secure.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/controlcenter/arrow-subview-back.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/controlcenter/arrow-subview.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/controlcenter/warning-gray.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/controlcenter/warning-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/connecting.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/dark/navbar-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/dark/navbar-separator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/dark/tabs/new-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/dark/tabs/new-tab.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/dark/tabs/tab-overflow-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/dark/tabs/tab-overflow-indicator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/light/navbar-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/light/navbar-separator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/light/tabs/new-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/light/tabs/new-tab.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/light/tabs/tab-overflow-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/light/tabs/tab-overflow-indicator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/custom_images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/custom_images/loading.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/background-noise-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/background-noise-toolbar.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customize-illustration-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customize-illustration-rtl.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customize-illustration-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customize-illustration-rtl@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customize-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customize-illustration.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customize-illustration@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customize-illustration@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customizeFavicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customizeFavicon.ico -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customizeMode-gridTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customizeMode-gridTexture.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customizeMode-separatorHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customizeMode-separatorHorizontal.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/customizeMode-separatorVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/customizeMode-separatorVertical.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/info-icon-customizeTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/info-icon-customizeTip.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/info-icon-customizeTip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/info-icon-customizeTip@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/menuPanel-customizeFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/menuPanel-customizeFinish.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/menuPanel-customizeFinish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/menuPanel-customizeFinish@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/panelarrow-customizeTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/panelarrow-customizeTip.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/panelarrow-customizeTip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/panelarrow-customizeTip@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted-rtl.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted-rtl@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/subView-arrow-back-inverted@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/whimsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/whimsy.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/customizableui/whimsy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/customizableui/whimsy@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/devedition/urlbar-history-dropmarker.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/devtools/common.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /** 6 | * This file only exists to support add-ons which import this style sheet at a 7 | * specific path. 8 | */ 9 | 10 | @import url("resource://devtools/client/themes/common.css"); 11 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/downloads/contentAreaDownloadsView.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @import url("chrome://global/skin/in-content/common.css"); 6 | 7 | #contentAreaDownloadsView { 8 | padding: 18px; 9 | } 10 | 11 | #downloadsRichListBox:empty { 12 | border-color: transparent; 13 | background-color: transparent; 14 | } 15 | 16 | .downloadButton:not([disabled="true"]):hover, 17 | .downloadButton:not([disabled="true"]):hover:active, 18 | .downloadButton:not([disabled]):hover:active { 19 | background: transparent; 20 | border: none; 21 | } 22 | 23 | .downloadButton > .button-box { 24 | padding-bottom: 0; 25 | } 26 | 27 | #downloadsListEmptyDescription { 28 | margin: 1em; 29 | text-align: center; 30 | color: GrayText; 31 | } 32 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/downloads/download-blocked.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/downloads/download-glow-menuPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/downloads/download-glow-menuPanel.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/downloads/download-notification-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/downloads/download-notification-finish.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/downloads/download-notification-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/downloads/download-notification-start.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/downloads/download-summary.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/favicon-search-16.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/feeds/audioFeedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/feeds/audioFeedIcon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/feeds/audioFeedIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/feeds/audioFeedIcon16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/feeds/feedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/feeds/feedIcon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/feeds/feedIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/feeds/feedIcon16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/feeds/videoFeedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/feeds/videoFeedIcon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/feeds/videoFeedIcon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/feeds/videoFeedIcon16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fullscreen/secure.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/android.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/android@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/android@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/ios.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/ios@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/ios@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/logo.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/logo@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/sync-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/sync-illustration.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/fxa/sync-illustration@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/fxa/sync-illustration@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/gear.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/heartbeat-star-lit.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/heartbeat-star-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/icon-search-64.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/info.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/menuPanel-customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/menuPanel-customize.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/menuPanel-customize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/menuPanel-customize@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/menuPanel-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/menuPanel-exit.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/menuPanel-exit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/menuPanel-exit@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/menuPanel-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/menuPanel-help.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/menuPanel-help@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/menuPanel-help@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/monitor.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/monitor_16-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/monitor_16-10.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/newtab/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/newtab/close.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/page-livemarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/page-livemarks.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/pageInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/pageInfo.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/panic-panel/header-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/panic-panel/header-small.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/panic-panel/header-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/panic-panel/header-small@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/panic-panel/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/panic-panel/header.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/panic-panel/header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/panic-panel/header@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/panic-panel/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/panic-panel/icons.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/panic-panel/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/panic-panel/icons@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/bookmarks-menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/bookmarks-menu-arrow.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/bookmarks-notification-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/bookmarks-notification-finish.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/bookmarksMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/bookmarksMenu.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/bookmarksToolbar-menuPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/bookmarksToolbar-menuPanel.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/bookmarksToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/bookmarksToolbar.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/calendar.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/downloads.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/livemark-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/livemark-item.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/organizer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/query.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/starred48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/starred48.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/tag.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/toolbarDropMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/toolbarDropMarker.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/unsortedBookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/unsortedBookmarks.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/places/unstarred48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/places/unstarred48.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/preferences/alwaysAsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/preferences/alwaysAsk.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/preferences/in-content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/preferences/in-content/favicon.ico -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/preferences/in-content/search.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #defaultEngine { 6 | margin-inline-start: 0; 7 | } 8 | 9 | #defaultEngine > .menulist-label-box > .menulist-icon { 10 | height: 16px; 11 | } 12 | 13 | /* work around a display: none in Linux's menu.css, see bug 1112310 */ 14 | .searchengine-menuitem > .menu-iconic-left { 15 | display: -moz-box; 16 | } 17 | 18 | #engineList { 19 | margin: .5em 0; 20 | } 21 | 22 | #engineList treechildren::-moz-tree-image(engineName) { 23 | margin-inline-end: 10px; 24 | margin-inline-start: 1px; 25 | width: 16px; 26 | height: 16px; 27 | } 28 | 29 | #engineList treechildren::-moz-tree-drop-feedback { 30 | background-color: Highlight; 31 | width: 10000px; /* 100% doesn't work; 10k is hopefully larger than any window 32 | we may have, overflow isn't visible. */ 33 | height: 2px; 34 | margin-inline-start: 0; 35 | } 36 | 37 | #engineShown { 38 | min-width: 26px; 39 | } 40 | 41 | #addEnginesBox { 42 | margin-bottom: 1em; 43 | } 44 | 45 | #removeEngineButton, 46 | #restoreDefaultSearchEngines { 47 | margin-right: 0; 48 | margin-left: 0; 49 | } 50 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/privatebrowsing-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/privatebrowsing-mask.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/privatebrowsing/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/privatebrowsing/tracking-protection-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 11 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/privatebrowsing/tracking-protection.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/reader-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/reader-tour.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/reader-tour@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/reader-tour@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/reload-stop-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/reload-stop-go.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/reload-stop-go@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/reload-stop-go@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem "sass", "~> 3.4.0" 4 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | sass (3.4.10) 5 | 6 | PLATFORMS 7 | ruby 8 | 9 | DEPENDENCIES 10 | sass (~> 3.4.0) 11 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/browser-dark.scss: -------------------------------------------------------------------------------- 1 | $variant: 'dark'; 2 | $transparency: 'true'; 3 | $darker: 'false'; 4 | 5 | @import "_colors"; 6 | @import "_drawing"; 7 | @import "_browser-sass"; 8 | @import "extensions/_loop.scss"; 9 | @import "extensions/_pocket.scss"; 10 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/browser-darker.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $transparency: 'true'; 3 | $darker: 'true'; 4 | 5 | @import "_colors"; 6 | @import "_drawing"; 7 | @import "_browser-sass"; 8 | @import "extensions/_loop.scss"; 9 | @import "extensions/_pocket.scss"; 10 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/browser-light.scss: -------------------------------------------------------------------------------- 1 | $variant: 'light'; 2 | $transparency: 'true'; 3 | $darker: 'false'; 4 | 5 | @import "_colors"; 6 | @import "_drawing"; 7 | @import "_browser-sass"; 8 | @import "extensions/_loop.scss"; 9 | @import "extensions/_pocket.scss"; 10 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/extensions/_loop.scss: -------------------------------------------------------------------------------- 1 | #loop-button, 2 | toolbar[brighttext] #loop-button { 3 | #nav-bar & { list-style-image: url("chrome://browser/skin/custom_images/#{$asset_path}/loop-toolbar-icons.svg") !important; } 4 | 5 | #TabsToolbar & { list-style-image: url("chrome://browser/skin/custom_images/#{$darker_asset_path_2}/loop-tabbar-icons.svg") !important; } 6 | 7 | #nav-bar &:not([disabled=true]):-moz-any([open],[checked],:hover:active), 8 | #TabsToolbar &:not([disabled=true]):-moz-any([open],[checked],:hover:active) { 9 | list-style-image: url("chrome://browser/skin/custom_images/loop-toolbar-icons-active.svg") !important; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/extensions/_pocket.scss: -------------------------------------------------------------------------------- 1 | #pocket-button, 2 | toolbar[brighttext] #pocket-button { 3 | #nav-bar & { list-style-image: url("chrome://browser/skin/custom_images/#{$asset_path}/pocket-toolbar-icons.svg") !important; } 4 | 5 | #TabsToolbar & { list-style-image: url("chrome://browser/skin/custom_images/#{$darker_asset_path_2}/pocket-tabbar-icons.svg") !important; } 6 | 7 | #nav-bar &:not([disabled=true]):-moz-any([open],[checked],:hover:active), 8 | #TabsToolbar &:not([disabled=true]):-moz-any([open],[checked],:hover:active) { 9 | list-style-image: url("chrome://browser/skin/custom_images/pocket-toolbar-icons-active.svg") !important; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sass/parse-sass.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | bundle exec sass --update --style=nested --sourcemap=none . 4 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-arrow-go.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-engine-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/search-engine-placeholder.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-engine-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/search-engine-placeholder@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-history-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-indicator-badge-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/search-indicator-badge-add.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-indicator-badge-add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/search-indicator-badge-add@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-indicator-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/search-indicator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/search-indicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/search-indicator@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/searchReset.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | body { 6 | align-items: center; 7 | } 8 | 9 | .title { 10 | background-image: url("chrome://browser/skin/icon-search-64.svg"); 11 | } 12 | 13 | #defaultEngine { 14 | padding-inline-start: 26px; 15 | background-repeat: no-repeat; 16 | background-position: 5px center; 17 | background-size: 16px, 16px; 18 | } 19 | 20 | #defaultEngine:dir(rtl) { 21 | background-position: calc(100% - 5px) center; 22 | } 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/session-restore.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/setDesktopBackground.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | @namespace html url("http://www.w3.org/1999/xhtml"); 7 | 8 | html|canvas#screen { 9 | margin: 12px 11px 32px; 10 | } 11 | 12 | #monitor { 13 | list-style-image: url("chrome://browser/skin/monitor.png"); 14 | } 15 | 16 | #monitor[aspectratio="16:10"] { 17 | list-style-image: url("chrome://browser/skin/monitor_16-10.png"); 18 | } 19 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/slowStartup-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/slowStartup-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/social/services-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/social/services-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/social/services-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/social/services-64.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-128.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-32.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-bg.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-desktopIcon.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-horizontalbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-horizontalbar.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-horizontalbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-horizontalbar@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-mobileIcon.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/sync-notification-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/sync-notification-24.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/syncCommon.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* The following are used by both sync/setup.xul and sync/genericChange.xul */ 6 | .status { 7 | color: -moz-dialogtext; 8 | } 9 | 10 | .statusIcon { 11 | margin-inline-start: 4px; 12 | max-height: 16px; 13 | max-width: 16px; 14 | } 15 | 16 | .statusIcon[status="active"] { 17 | list-style-image: url("chrome://global/skin/icons/loading.png"); 18 | } 19 | 20 | .statusIcon[status="error"] { 21 | list-style-image: url("moz-icon://stock/gtk-dialog-error?size=menu"); 22 | } 23 | 24 | .statusIcon[status="success"] { 25 | list-style-image: url("moz-icon://stock/gtk-dialog-info?size=menu"); 26 | } 27 | 28 | /* .data is only used by sync/genericChange.xul, but it seems unnecessary to have 29 | a separate stylesheet for it. */ 30 | .data { 31 | font-size: 90%; 32 | font-weight: bold; 33 | } 34 | 35 | dialog#change-dialog { 36 | width: 40em; 37 | } 38 | 39 | image#syncIcon { 40 | list-style-image: url("chrome://browser/skin/sync-32.png"); 41 | } 42 | 43 | #introText { 44 | margin-top: 2px; 45 | } 46 | 47 | #feedback { 48 | height: 2em; 49 | } 50 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/syncProgress-horizontalbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/syncProgress-horizontalbar.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/syncProgress-horizontalbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/syncProgress-horizontalbar@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/syncQuota.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #quotaDialog { 6 | width: 33em; 7 | height: 25em; 8 | } 9 | 10 | treechildren::-moz-tree-checkbox { 11 | list-style-image: none; 12 | } 13 | treechildren::-moz-tree-checkbox(checked) { 14 | list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif"); 15 | } 16 | treechildren::-moz-tree-checkbox(disabled) { 17 | list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif"); 18 | } 19 | 20 | #treeCaption { 21 | height: 4em; 22 | } 23 | 24 | .captionWarning { 25 | font-weight: bold; 26 | } 27 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/alltabs-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/alltabs-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/alltabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/alltabs.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/connecting.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/connecting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/connecting@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/crashed.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/newtab-inverted.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/newtab.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/pendingpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/pendingpaint.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-active-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-active-middle.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-active-middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-active-middle@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-arrow-left-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-arrow-left-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-arrow-left.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-audio.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-background-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-background-end.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-background-end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-background-end@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-background-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-background-middle.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-background-middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-background-middle@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-background-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-background-start.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-background-start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-background-start@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-overflow-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-overflow-indicator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-end.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-end@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-start.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tab-stroke-start@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/tabbrowser/tabDragIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/tabbrowser/tabDragIndicator.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/toolbarbutton-dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/toolbarbutton-dropdown-arrow.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/translating-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/translating-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/translating-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/translating-16@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/translation-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/translation-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/translation-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/translation-16@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/undoCloseTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/undoCloseTab.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/undoCloseTab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/browser/undoCloseTab@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/update-badge-failed.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/update-badge.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/urlbar-star.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/urlbar-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/warning-white.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/warning.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/browser/wifi.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 11 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/communicator/communicator.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @import url("chrome://global/skin/"); 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/Filepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/Filepicker.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/aboutCacheEntry.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | body { 6 | display: table; 7 | } 8 | 9 | table { 10 | table-layout: fixed; 11 | width: 100%; 12 | } 13 | 14 | th { 15 | width: 12em; 16 | word-wrap: break-word; 17 | vertical-align: top; 18 | text-align: end; 19 | } 20 | 21 | td { 22 | display: block; 23 | font-family: -moz-fixed; 24 | white-space: pre-wrap; 25 | } 26 | 27 | #td-key { 28 | word-wrap: break-word; 29 | } 30 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/aboutMemory.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @import url("chrome://global/content/aboutMemory.css"); 6 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/alerts/alert.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* ===== alert.css ===================================================== 6 | == Styles specific to the alerts dialog. 7 | ======================================================================= */ 8 | 9 | @import url("chrome://global/skin/alerts/alert-common.css"); 10 | 11 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 12 | 13 | .alertBox { 14 | border: 1px solid threedshadow; 15 | background-color: -moz-Dialog; 16 | } 17 | 18 | .alertCloseButton { 19 | -moz-appearance: none; 20 | height: 16px; 21 | padding: 4px 2px; 22 | width: 16px; 23 | } 24 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/appPicker.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | 6 | #app-picker { 7 | width: 320px; 8 | } 9 | 10 | #content-description { 11 | font-weight: bold; 12 | } 13 | 14 | #content-icon, 15 | .listcell-icon { 16 | margin: 5px; 17 | width: 32px; 18 | height: 32px; 19 | } 20 | 21 | .listcell-label { 22 | padding: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-dn-dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-dn-dis.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-dn-hov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-dn-hov.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-dn-sharp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-dn-sharp.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-dn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-dn.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-down.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-lft-dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-lft-dis.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-lft-sharp-end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-lft-sharp-end.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-lft-sharp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-lft-sharp.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-lft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-lft.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-rit-dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-rit-dis.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-rit-sharp-end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-rit-sharp-end.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-rit-sharp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-rit-sharp.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-rit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-rit.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-up-dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-up-dis.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-up-hov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-up-hov.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-up-sharp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-up-sharp.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/arrow/arrow-up.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/panelarrow-horizontal-themed.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/panelarrow-horizontal.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/panelarrow-vertical-themed.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/arrow/panelarrow-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/checkbox/cbox-check-dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/checkbox/cbox-check-dis.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/checkbox/cbox-check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/checkbox/cbox-check.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/colorpicker.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* ===== colorpicker.css ================================================ 6 | == Styles used by the XUL colorpicker element. 7 | ======================================================================= */ 8 | 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 10 | 11 | /* ::::: colorpicker button ::::: */ 12 | 13 | /* colorpicker button */ 14 | 15 | colorpicker[type="button"] { 16 | -moz-appearance: button; 17 | width: 38px; 18 | height: 24px; 19 | } 20 | 21 | .colorpicker-button-colorbox { 22 | border: 1px solid #000000; 23 | } 24 | 25 | /* ::::: colorpicker tiles ::::: */ 26 | 27 | .colorpickertile { 28 | width: 20px; 29 | height: 20px; 30 | margin: 1px; 31 | border-left: 1px solid ThreeDShadow; 32 | border-top: 1px solid ThreeDShadow; 33 | border-right: 1px solid ThreeDHighlight; 34 | border-bottom: 1px solid ThreeDHighlight; 35 | } 36 | 37 | .colorpickertile[selected="true"] { 38 | border: 2px outset #C0C0C0; 39 | } 40 | 41 | .colorpickertile[hover="true"] { 42 | border: 2px dotted #FFFFFF; 43 | } 44 | 45 | .cp-light[hover="true"] { 46 | border: 2px dotted #909090; 47 | } 48 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/commonDialog.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #filler { 6 | margin-inline-start: -8px; 7 | margin-inline-end: -10px; 8 | } 9 | 10 | #iconContainer { 11 | -moz-box-pack: center; 12 | min-height: 55px; /* maximum icon height + icon margin */ 13 | min-width: 58px; /* maximum icon width + icon margin */ 14 | } 15 | 16 | #info\.icon { 17 | max-width: 48px; 18 | max-height: 48px; 19 | /* The 'spaced' class does this already. It's repeated here to make it clearer 20 | what margin values the #iconContainer's min-height and max-height depend on: */ 21 | margin: 3px 5px 4px; 22 | } 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/config.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #warningScreen { 6 | font-size: 15px; 7 | padding-top: 0; 8 | padding-bottom: 0; 9 | padding-inline-start: calc(48px + 4.6em); 10 | padding-inline-end: 48px; 11 | } 12 | 13 | .title { 14 | background-image: url("chrome://global/skin/icons/warning.svg"); 15 | } 16 | 17 | #warningTitle { 18 | font-weight: lighter; 19 | line-height: 1.2; 20 | color: #333; 21 | margin: 0; 22 | margin-bottom: .5em; 23 | } 24 | 25 | #warningText { 26 | margin: 1em 0; 27 | } 28 | 29 | #warningButton { 30 | margin-top: 0.6em; 31 | } 32 | 33 | #filterRow { 34 | margin-top: 4px; 35 | margin-inline-start: 4px; 36 | } 37 | 38 | #configTree { 39 | margin-top: 4px; 40 | margin-bottom: 4px; 41 | } 42 | 43 | #configTreeBody::-moz-tree-cell-text(user) { 44 | font-weight: bold; 45 | } 46 | 47 | #configTreeBody::-moz-tree-cell-text(locked) { 48 | font-style: italic; 49 | } 50 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/customizeToolbar.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | window, 6 | dialog { 7 | padding: 6px; 8 | } 9 | 10 | #instructions { 11 | font-weight: bold; 12 | font-size: larger; 13 | } 14 | 15 | #palette-box { 16 | -moz-appearance: listbox; 17 | margin: 0 0 10px; 18 | } 19 | 20 | #palette-box > toolbarpaletteitem { 21 | padding: 8px 2px; 22 | margin: 0 8px; 23 | } 24 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/datetimepopup.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | panel[type="arrow"][side="top"], 8 | panel[type="arrow"][side="bottom"] { 9 | margin-left: 0; 10 | margin-right: 0; 11 | } 12 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/dirListing/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/dirListing/folder.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/dirListing/local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/dirListing/local.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/dirListing/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/dirListing/remote.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/dirListing/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/dirListing/up.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/dropmarker.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | dropmarker { 6 | -moz-appearance: menulist-button; 7 | } 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/expander.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | .expanderButton { 6 | cursor: pointer !important; 7 | } 8 | 9 | .settingsContainer { 10 | padding-top: 3px; 11 | padding-bottom: 5px; 12 | padding-inline-start: 20px; 13 | padding-inline-end: 5px; 14 | } 15 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/filefield.css: -------------------------------------------------------------------------------- 1 | /* 2 | # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- 3 | # This Source Code Form is subject to the terms of the Mozilla Public 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 | */ 7 | 8 | /* File Field Widget */ 9 | filefield { 10 | margin: 2px 4px; 11 | -moz-appearance: textfield; 12 | } 13 | 14 | .fileFieldContentBox { 15 | background-color: -moz-Dialog; 16 | } 17 | 18 | .fileFieldIcon[disabled="true"] { 19 | opacity: 0.4; 20 | } 21 | 22 | .fileFieldIcon { 23 | width: 16px; 24 | height: 16px; 25 | margin-top: 1px; 26 | margin-bottom: 1px; 27 | margin-inline-start: 1px; 28 | margin-inline-end: 4px; 29 | } 30 | 31 | .fileFieldLabel { 32 | -moz-appearance: none; 33 | background-color: transparent; 34 | border: none; 35 | margin: 0px; 36 | } 37 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/filters.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/groupbox.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* ===== groupbox.css ================================================== 6 | == Styles used by the XUL groupbox and related elements. 7 | ======================================================================= */ 8 | 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 10 | 11 | /* ::::: groupbox ::::: */ 12 | 13 | groupbox { 14 | margin: 5px; 15 | padding: 5px; 16 | } 17 | 18 | .groupbox-body { 19 | padding-inline-start: 10px; 20 | } 21 | 22 | caption { 23 | margin-bottom: 2px; 24 | font-weight: bold; 25 | } 26 | 27 | /* !important is needed to override label in global.css */ 28 | .caption-text { 29 | margin-top: 0 !important; 30 | margin-bottom: 0 !important; 31 | margin-inline-start: 1px !important; 32 | } 33 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Authentication.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Close.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Error.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Landscape.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Minimize.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Portrait.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Print-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Print-preview.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Question.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Restore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Restore.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Search-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Search-close.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Search-glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Search-glass.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/Warning.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/autocomplete-search.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/autoscroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/autoscroll.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/blacklist_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/blacklist_favicon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/blacklist_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/blacklist_large.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/blocked.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/calendar-arrows.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/close-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/close-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/close-inverted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/close-inverted@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/close.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/close@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/collapse.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/error-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/error-64.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/expand.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/find-arrows.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/folder-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/folder-item.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/info.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/information-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/information-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/information-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/information-24.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/information-32.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/input-clear.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/loading.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/loading@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/menubutton-dropmarker.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/question-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/question-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/question-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/question-64.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/resizer-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/resizer-rtl.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/resizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/resizer.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/spinner-arrows.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/sslWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/sslWarning.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/tabprompts-bgtexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/tabprompts-bgtexture.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/warning-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/warning-64.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/warning-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/warning-large.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/icons/windowControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/icons/windowControls.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/in-content/check-partial.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/in-content/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/in-content/dropdown.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/in-content/radio.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/linkTree.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | /** 8 | * All the properties in this rule are important to avoid having to create 9 | * a special type of tree. This stylesheet can be loaded into a document with 10 | * a single tree that is a link tree. Hardly elegant but it's efficient. 11 | */ 12 | treeitem[selected="true"] > treerow 13 | { 14 | background : transparent !important; 15 | border : none !important; 16 | color : -moz-FieldText !important; 17 | } 18 | 19 | treecell:hover 20 | { 21 | text-decoration : underline !important; 22 | color : #000080 !important; 23 | cursor : pointer; 24 | } 25 | 26 | treecell:hover:active 27 | { 28 | text-decoration : underline !important; 29 | color : red !important; 30 | } 31 | 32 | 33 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/TopLevelImageDocument.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @media not print { 6 | /* N.B.: Remember to update ImageDocument.css in the tree or reftests may fail! */ 7 | 8 | body { 9 | color: #eee; 10 | background-image: url("chrome://global/skin/media/imagedoc-darknoise.png"); 11 | } 12 | 13 | img.transparent { 14 | background: hsl(0,0%,90%) url("chrome://global/skin/media/imagedoc-lightnoise.png"); 15 | color: #222; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/TopLevelVideoDocument.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | body { 6 | background-image: url("chrome://global/skin/media/imagedoc-darknoise.png"); 7 | background-color: rgb(33,33,33); /* Average color of that ^ image. */ 8 | } 9 | 10 | video { 11 | box-shadow: 0 0 5px rgba(0,0,0,0.6); 12 | } 13 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/clicktoplay-bgtexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/media/clicktoplay-bgtexture.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/media/error.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/imagedoc-darknoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/media/imagedoc-darknoise.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/imagedoc-lightnoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/media/imagedoc-lightnoise.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/pauseButton.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/playButton.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 26 | 27 | 28 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/stalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/media/stalled.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/media/throbber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/media/throbber.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/menu/shared-menu-check-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/menu/shared-menu-check-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/menu/shared-menu-check-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/menu/shared-menu-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/menu/shared-menu-check.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/menu/shared-menu-check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/menu/shared-menu-check@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate.css: -------------------------------------------------------------------------------- 1 | .narrating { 2 | position: relative; 3 | z-index: 1; 4 | } 5 | 6 | body.light .narrating { 7 | background-color: #ffc; 8 | } 9 | 10 | body.sepia .narrating { 11 | background-color: #e0d7c5; 12 | } 13 | 14 | body.dark .narrating { 15 | background-color: #242424; 16 | } 17 | 18 | .narrate-word-highlight { 19 | position: absolute; 20 | display: none; 21 | transform: translate(-50%, calc(-50% - 2px)); 22 | z-index: -1; 23 | border-bottom-style: solid; 24 | border-bottom-width: 7px; 25 | transition: left 0.1s ease, width 0.1s ease; 26 | } 27 | 28 | .narrating > .narrate-word-highlight { 29 | display: inline-block; 30 | } 31 | 32 | .narrate-word-highlight.newline { 33 | transition: none; 34 | } 35 | 36 | body.light .narrate-word-highlight { 37 | border-bottom-color: #ffe087; 38 | } 39 | 40 | body.sepia .narrate-word-highlight { 41 | border-bottom-color: #bdb5a5; 42 | } 43 | 44 | body.dark .narrate-word-highlight { 45 | border-bottom-color: #6f6f6f; 46 | } 47 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate/back.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate/fast.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate/forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate/start.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/narrate/stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/numberbox.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* ===== numberbox.css ================================================== 6 | == Styles used by the XUL textbox type="number" element. 7 | ======================================================================= */ 8 | 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 10 | @namespace html url("http://www.w3.org/1999/xhtml"); 11 | 12 | textbox[type="number"] { 13 | -moz-appearance: none; 14 | padding: 0 !important; 15 | border: none; 16 | cursor: default; 17 | background-color: transparent; 18 | } 19 | 20 | html|*.numberbox-input { 21 | text-align: right; 22 | } 23 | 24 | .numberbox-input-box { 25 | -moz-box-align: center; 26 | -moz-appearance: spinner-textfield; 27 | margin-right: -1px; 28 | border: 2px solid; 29 | -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; 30 | -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; 31 | -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; 32 | -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; 33 | padding: 3px; 34 | } 35 | 36 | textbox[hidespinbuttons="true"] > .numberbox-input-box { 37 | -moz-appearance: textfield; 38 | } 39 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/passwordmgr.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | .contentPane { 8 | margin: 9px 8px 5px 8px; 9 | } 10 | 11 | .actionButtons { 12 | margin: 0px 3px 6px 3px !important; 13 | } 14 | 15 | treechildren::-moz-tree-image(siteCol) { 16 | list-style-image: url(chrome://mozapps/skin/places/defaultFavicon.png); 17 | width: 16px; 18 | height: 16px; 19 | margin-inline-end: 5px; 20 | } 21 | 22 | @media (min-resolution: 1.1dppx) { 23 | treechildren::-moz-tree-image(siteCol) { 24 | list-style-image: url(chrome://mozapps/skin/places/defaultFavicon@2x.png); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/printPageSetup.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | .portrait-page { 6 | list-style-image: url("moz-icon://stock/gtk-orientation-portrait?size=button"); 7 | } 8 | 9 | .landscape-page { 10 | list-style-image: url("moz-icon://stock/gtk-orientation-landscape?size=button"); 11 | } 12 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/printPreview.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | .navigate-button { 6 | min-width: 1.9em; 7 | } 8 | 9 | .navigate-button > .toolbarbutton-icon { 10 | display: none; 11 | } 12 | 13 | .toolbar-portrait-page { 14 | list-style-image: url("moz-icon://stock/gtk-orientation-portrait?size=button"); 15 | } 16 | 17 | .toolbar-landscape-page { 18 | list-style-image: url("moz-icon://stock/gtk-orientation-landscape?size=button"); 19 | } 20 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/radio/radio-check-dis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/radio/radio-check-dis.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/radio/radio-check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/radio/radio-check.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Close-24x24.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Content-Width-Minus-42x16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Content-Width-Plus-44x16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Line-Height-Minus-38x14.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Line-Height-Plus-38x24.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Minus-24x24.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Plus-24x24.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Type-Controls-24x24.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/reader/RM-Type-Controls-Arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/resizer.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | resizer { 8 | -moz-appearance: resizer; 9 | background: url("chrome://global/skin/icons/resizer.png") no-repeat; 10 | background-size: 100% 100%; 11 | cursor: se-resize; 12 | width: 15px; 13 | height: 15px; 14 | } 15 | 16 | resizer[rtl="true"], 17 | resizer[dir="bottomend"]:-moz-locale-dir(rtl) { 18 | background: url("chrome://global/skin/icons/resizer-rtl.png") no-repeat; 19 | } 20 | 21 | resizer[dir="left"], 22 | resizer[dir="bottomleft"], 23 | resizer[dir="bottomstart"] { 24 | transform: scaleX(-1); 25 | } 26 | 27 | resizer[dir="bottomleft"], 28 | resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)), 29 | resizer[dir="bottomend"][rtl="true"] { 30 | cursor: sw-resize; 31 | } 32 | 33 | resizer[dir="top"], 34 | resizer[dir="bottom"] { 35 | cursor: ns-resize; 36 | } 37 | 38 | resizer[dir="left"], 39 | resizer[dir="right"] { 40 | cursor: ew-resize; 41 | } 42 | 43 | resizer[dir="topleft"] { 44 | cursor: nw-resize; 45 | } 46 | 47 | resizer[dir="topright"] { 48 | cursor: ne-resize; 49 | } 50 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/richlistbox.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | richlistbox { 8 | -moz-appearance: listbox; 9 | margin: 2px 4px; 10 | background-color: -moz-Field; 11 | color: -moz-FieldText; 12 | } 13 | 14 | richlistbox[disabled="true"] { 15 | color: GrayText; 16 | } 17 | 18 | richlistitem[selected="true"] { 19 | background-color: -moz-cellhighlight; 20 | color: -moz-cellhighlighttext; 21 | } 22 | 23 | richlistbox:focus > richlistitem[selected="true"] { 24 | background-color: Highlight; 25 | color: HighlightText; 26 | } 27 | 28 | richlistbox[seltype="multiple"]:focus > richlistitem[current="true"] { 29 | outline: 1px dotted Highlight; 30 | outline-offset: -1px; 31 | } 32 | 33 | richlistbox[seltype="multiple"]:focus > richlistitem[current="true"][selected="true"] { 34 | outline: 1px dotted #F3D982; /* TODO: find a suitable system color */ 35 | } 36 | 37 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/scale/scale-tray-horiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/scale/scale-tray-horiz.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/scale/scale-tray-vert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/scale/scale-tray-vert.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/scrollbar/slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/scrollbar/slider.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/scrollbox.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | .autorepeatbutton-up > .autorepeatbutton-icon, 8 | .scrollbutton-up > .toolbarbutton-icon { 9 | -moz-appearance: button-arrow-up; 10 | } 11 | 12 | .autorepeatbutton-down > .autorepeatbutton-icon, 13 | .scrollbutton-down > .toolbarbutton-icon { 14 | -moz-appearance: button-arrow-down; 15 | } 16 | 17 | .autorepeatbutton-up[orient="horizontal"] > .autorepeatbutton-icon, 18 | .scrollbutton-up[orient="horizontal"] > .toolbarbutton-icon { 19 | -moz-appearance: button-arrow-previous; 20 | } 21 | 22 | .autorepeatbutton-down[orient="horizontal"] > .autorepeatbutton-icon, 23 | .scrollbutton-down[orient="horizontal"] > .toolbarbutton-icon { 24 | -moz-appearance: button-arrow-next; 25 | } 26 | 27 | :-moz-any(.scrollbutton-up, .scrollbutton-down) > .toolbarbutton-text { 28 | display: none; 29 | } 30 | 31 | autorepeatbutton { 32 | border: 1px solid ThreeDShadow; 33 | } 34 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/splitter/grip-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/splitter/grip-bottom.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/splitter/grip-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/splitter/grip-left.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/splitter/grip-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/splitter/grip-right.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/splitter/grip-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/splitter/grip-top.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tabprompts.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* Tab Modal Prompt boxes */ 6 | tabmodalprompt { 7 | background-image: url(chrome://global/skin/icons/tabprompts-bgtexture.png); 8 | background-color: hsla(0,0%,10%,.5); 9 | font-family: sans-serif; /* use content font not system UI font */ 10 | } 11 | 12 | .mainContainer { 13 | color: -moz-fieldText; 14 | background-color: -moz-field; 15 | border-radius: 2px; 16 | border: 1px solid threeDDarkShadow; 17 | } 18 | 19 | .topContainer { 20 | padding: 20px; 21 | } 22 | 23 | .buttonContainer { 24 | padding: 12px 20px 15px; 25 | background-color: hsla(0,0%,0%,.05); 26 | border-top: 1px solid hsla(0,0%,0%,.05); 27 | } 28 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/toolbar/chevron-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/toolbar/chevron-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/toolbar/chevron.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/toolbar/chevron.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/toolbar/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/toolbar/spring.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/columnpicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/columnpicker.gif -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/sort-asc-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/sort-asc-classic.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/sort-asc.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/sort-dsc-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/sort-dsc-classic.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/sort-dsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/sort-dsc.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/twisty-clsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/twisty-clsd.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/tree/twisty-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/global/tree/twisty-open.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/global/wizard.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 6 | 7 | .wizard-header { 8 | border-bottom: 2px groove ThreeDFace; 9 | background-color: Window; 10 | color: WindowText; 11 | } 12 | 13 | .wizard-header-box-1 { 14 | padding: 5px 0px 5px 0px; 15 | } 16 | 17 | wizard[description=""] .wizard-header-description { 18 | display: none; 19 | } 20 | 21 | .wizard-header-label { 22 | margin-inline-start: 23px; 23 | font-weight: bold; 24 | } 25 | 26 | .wizard-header-description { 27 | margin-inline-start: 44px; 28 | } 29 | 30 | wizard[branded="true"] .wizard-header-icon { 31 | list-style-image: url("chrome://branding/content/icon48.png"); 32 | margin-inline-end: 5px; 33 | } 34 | 35 | .wizard-page-box { 36 | margin: 10px 44px; 37 | } 38 | 39 | .wizard-buttons-separator { 40 | margin-bottom: 0px !important; 41 | } 42 | 43 | .wizard-buttons-box-2 { 44 | margin: 10px; 45 | } 46 | 47 | .wizard-button[dlgtype="finish"], 48 | .wizard-button[dlgtype="next"] { 49 | margin-inline-start: 0px !important; 50 | } 51 | 52 | .wizard-button[dlgtype="back"] { 53 | margin-inline-end: 0px !important; 54 | } 55 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/aboutServiceWorkers.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | body { 6 | min-width: 330px; 7 | max-width: 100%; 8 | min-height: 330px; 9 | max-height: 100%; 10 | } 11 | 12 | .warningBackground { 13 | display: none; 14 | background: -moz-Dialog; 15 | width:100%; 16 | height:100%; 17 | z-index:10; 18 | top:0; 19 | left:0; 20 | position:fixed; 21 | } 22 | 23 | .warningMessage { 24 | color: -moz-FieldText; 25 | position: relative; 26 | min-width: 330px; 27 | max-width: 50em; 28 | margin: 4em auto; 29 | border: 1px solid ThreeDShadow; 30 | border-radius: 10px; 31 | padding: 3em; 32 | padding-inline-start: 30px; 33 | background: -moz-Field; 34 | margin-left: auto; 35 | text-align: center; 36 | } 37 | 38 | .active { 39 | display: block; 40 | } 41 | 42 | .inactive { 43 | display: none; 44 | } 45 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/downloads/downloadButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/downloads/downloadButtons.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/downloads/downloadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/downloads/downloadIcon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/downloads/unknownContentType.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | 6 | #from { 7 | margin-top: 1px; 8 | } 9 | 10 | #location { 11 | font-weight: bold; 12 | } 13 | 14 | #contentTypeImage { 15 | height: 16px; 16 | width: 16px; 17 | margin-top: 0px; 18 | margin-bottom: 0px; 19 | margin-inline-start: 0px; 20 | margin-inline-end: 5px; 21 | } 22 | 23 | .small-indent { 24 | margin-inline-start: 15px; 25 | margin-inline-end: 15px; 26 | } 27 | 28 | .small-indent label { 29 | margin-inline-start: 0px; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/alerticon-error.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/alerticon-info-positive.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/alerticon-warning.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/blocklist.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | richlistitem { 6 | padding-top: 6px; 7 | padding-bottom: 6px; 8 | padding-inline-start: 7px; 9 | padding-inline-end: 7px; 10 | border-bottom: 1px solid #C0C0C0; 11 | } 12 | 13 | .addonName { 14 | font-weight: bold; 15 | } 16 | 17 | .blockedLabel { 18 | font-weight: bold; 19 | font-style: italic; 20 | } 21 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/cancel.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-available.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-dictionaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-dictionaries.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-discover.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-experiments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-experiments.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-extensions.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-languages.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-plugins.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-recent.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-search.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-service.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/category-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/category-themes.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/dictionaryGeneric-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/dictionaryGeneric-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/dictionaryGeneric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/dictionaryGeneric.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/discover-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/discover-logo.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/experimentGeneric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/experimentGeneric.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/extensionGeneric-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/extensionGeneric-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/extensionGeneric.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/heart.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/localeGeneric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/localeGeneric.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/navigation.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/rating-not-won.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/rating-not-won.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/rating-won.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/rating-won.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/themeGeneric-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/themeGeneric-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/themeGeneric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/extensions/themeGeneric.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/extensions/update.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | .throbber { 6 | list-style-image: url("chrome://global/skin/icons/loading.png"); 7 | width: 16px; 8 | height: 16px; 9 | margin-top: 5px; 10 | margin-bottom: 5px; 11 | margin-inline-start: 5px; 12 | margin-inline-end: 2px; 13 | } 14 | 15 | @media (min-resolution: 1.1dppx) { 16 | .throbber { 17 | list-style-image: url("chrome://global/skin/icons/loading@2x.png"); 18 | } 19 | } 20 | 21 | .alertBox { 22 | background-color: InfoBackground; 23 | color: InfoText; 24 | border: 1px outset InfoBackground; 25 | margin-left: 3px; 26 | margin-right: 3px; 27 | padding: 5px; 28 | } 29 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/formautofill/requestAutocomplete.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | @import url("chrome://global/skin/in-content/common.css"); 6 | 7 | :root { 8 | height: 100%; 9 | width: 100%; 10 | padding: 0; 11 | } 12 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/handling/handling.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #description-image:not([src]) { 6 | height: 32px; 7 | width: 32px; 8 | } 9 | 10 | richlistitem[type] { 11 | min-height: 36px; /* Don't forget to update the richlistbox height! */ 12 | padding-inline-start: 2px; 13 | } 14 | 15 | richlistitem { 16 | -moz-box-align: center; 17 | } 18 | 19 | richlistbox { 20 | /* 3 items high, plus 4px for top and bottom margins, less 2px for border */ 21 | min-height: 110px; 22 | } 23 | 24 | .name { 25 | font-weight: bold; 26 | } 27 | 28 | .description { 29 | color: GrayText; 30 | } 31 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/places/defaultFavicon-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/places/defaultFavicon-inverted.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/places/defaultFavicon-inverted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/places/defaultFavicon-inverted@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/places/defaultFavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/places/defaultFavicon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/places/defaultFavicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/places/defaultFavicon@2x.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/contentPluginActivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/contentPluginActivate.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/contentPluginBlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/contentPluginBlocked.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/contentPluginClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/contentPluginClose.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/contentPluginCrashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/contentPluginCrashed.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/contentPluginStripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/contentPluginStripe.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/pluginBlocked-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/pluginBlocked-64.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/pluginBlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/pluginBlocked.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/pluginGeneric-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/pluginGeneric-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/pluginGeneric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/pluginGeneric.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/plugins/pluginHelp-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/plugins/pluginHelp-16.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/profile/profileSelection.css: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | 6 | @import url("chrome://global/skin/global.css"); 7 | 8 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 9 | 10 | #profiles > listitem { 11 | list-style-image: url("chrome://mozapps/skin/profile/profileicon.png"); 12 | } 13 | 14 | #profiles > listitem > listcell > image { 15 | width: 16px; 16 | height: 16px; 17 | } 18 | 19 | box#managebuttons > button { 20 | min-width: 8em; 21 | } 22 | 23 | #managebuttons { 24 | padding-top: 1em; 25 | } 26 | -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/profile/profileicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/profile/profileicon.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/mozapps/update/downloadButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horst3180/arc-firefox-theme/9de37ad32455110f7cf3c1c14e926fa06951a8e9/arc-firefox-theme/chrome/mozapps/update/downloadButtons.png -------------------------------------------------------------------------------- /arc-firefox-theme/chrome/overrides.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp browser/feeds/feedIcon.png browser/feeds/audioFeedIcon.png 4 | cp browser/feeds/feedIcon16.png browser/feeds/audioFeedIcon16.png 5 | cp browser/feeds/feedIcon.png browser/feeds/videoFeedIcon.png 6 | cp browser/feeds/feedIcon16.png browser/feeds/videoFeedIcon16.png 7 | 8 | cp global/arrow/arrow-lft.gif global/arrow/arrow-lft-hov.gif 9 | cp global/arrow/arrow-rit.gif global/arrow/arrow-rit-hov.gif 10 | 11 | cp mozapps/extensions/dictionaryGeneric.png mozapps/extensions/category-dictionaries.png 12 | cp mozapps/extensions/experimentGeneric.png mozapps/extensions/category-experiments.png 13 | cp mozapps/extensions/extensionGeneric.svg mozapps/extensions/category-extensions.svg 14 | cp mozapps/extensions/localeGeneric.png mozapps/extensions/category-languages.png 15 | cp mozapps/extensions/themeGeneric.png mozapps/extensions/category-themes.png 16 | 17 | cp mozapps/passwordmgr/key-16.png mozapps/passwordmgr/key.png 18 | 19 | cp mozapps/plugins/pluginGeneric-16.png mozapps/plugins/notifyPluginCrashed.png 20 | cp mozapps/plugins/pluginGeneric-16.png mozapps/plugins/notifyPluginGeneric.png 21 | -------------------------------------------------------------------------------- /arc-firefox-theme/install.rdf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | {52c2877e-44e1-11e5-8874-a62d1d5d46B0} 8 | 53.20170420 9 | 4 10 | Arc Theme 11 | Arc Theme for Firefox 12 | horst3180 13 | arc-theme 14 | false 15 | true 16 | Linux 17 | OpenBSD 18 | FreeBSD 19 | NetBSD 20 | 21 | 22 | 23 | {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 24 | 53.0 25 | 56.0 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | test -z "$srcdir" && srcdir=$(dirname "$0") 4 | test -z "$srcdir" && srcdir=. 5 | 6 | cwd=$(pwd) 7 | cd "$srcdir" 8 | 9 | mkdir -p m4 10 | autoreconf --verbose --force --install || exit $? 11 | 12 | cd "$cwd" 13 | "$srcdir/configure" $@ 14 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- 1 | AC_INIT([arc-firefox-theme], [53.20170420], [https://github.com/horst3180/arc-firefox-theme/issues], [arc-firefox-theme], [https://github.com/horst3180/arc-firefox-theme]) 2 | AM_INIT_AUTOMAKE([-Wno-portability no-dist-gzip dist-xz foreign subdir-objects tar-ustar]) 3 | AC_PREFIX_DEFAULT(/usr/local) 4 | AM_SILENT_RULES([yes]) 5 | AC_CONFIG_MACRO_DIR([m4]) 6 | AC_PROG_MKDIR_P 7 | 8 | 9 | ARC_ENABLE([LIGHT], [light], [Arc Light Firefox], [disable]) 10 | ARC_ENABLE([DARKER], [darker], [Arc Darker Firefox], [disable]) 11 | ARC_ENABLE([DARK], [dark], [Arc Dark Firefox], [disable]) 12 | 13 | AC_CONFIG_FILES([Makefile]) 14 | AC_OUTPUT 15 | 16 | AC_MSG_RESULT([ 17 | arc-firefox-theme $VERSION 18 | ======== 19 | 20 | prefix: ${prefix} 21 | exec_prefix: ${exec_prefix} 22 | datarootdir: ${datarootdir} 23 | ]) 24 | -------------------------------------------------------------------------------- /m4/arc-enable.m4: -------------------------------------------------------------------------------- 1 | # ARC_ENABLE(VARIABLE, FEATURE, HELP-NAME, DISABLE/ENABLE) 2 | # ----------------------------------------------------------- 3 | AC_DEFUN([ARC_ENABLE], [ 4 | AC_ARG_ENABLE( 5 | [$2], 6 | [AS_HELP_STRING( 7 | [--$4-$2], 8 | [$4 $3 support] 9 | )], 10 | [ENABLE_$1="$enableval"], 11 | [AS_IF( 12 | [test "x$4" = "xdisable"], 13 | [ENABLE_$1="yes"], 14 | [ENABLE_$1="no"] 15 | )] 16 | ) 17 | AM_CONDITIONAL([ENABLE_$1], [test "x$ENABLE_$1" = "xyes"]) 18 | AC_SUBST([ENABLE_$1]) 19 | ]) 20 | --------------------------------------------------------------------------------