summaryrefslogtreecommitdiffstats
path: root/core/css
Commit message (Expand)AuthorAgeFilesLines
* Unquote string when removing the hash from a colorJulius Härtl2021-01-111-1/+2
* Make SCSS compliantJulius Härtl2021-01-112-39/+39
* Increase horizontal paddingMarco Ambrosini2020-12-221-1/+1
* Add default font sizeGretaD2020-11-033-2/+8
* Properly put hidden-visually off-screenVincent Petry2020-10-293-7/+7
* Merge pull request #23345 from nextcloud/fix/scrollbarsJohn Molakvoæ2020-10-131-3/+5
|\
| * Increase scrollbar sizesJohn Molakvoæ (skjnldsv)2020-10-111-3/+5
* | Fix adminpass strengthify marginRichard Steinmetz2020-10-081-1/+0
|/
* Bump default font size to 15 pxMarco Ambrosini2020-10-061-2/+2
* Don't influence toastify errors and always use whiteJoas Schilling2020-10-051-2/+2
* Fix app text going too far down on hover/focusJan C. Borchardt2020-09-251-1/+0
* Make sure most app names don’t ellipsize, fix #22845, fix #22219Jan C. Borchardt2020-09-171-3/+15
* Revert "Increase html body height to full content height"Joas Schilling2020-09-101-1/+1
* Merge pull request #22614 from nextcloud/fix/22606/popover-boundariesMorris Jobke2020-09-101-1/+1
|\
| * Increase html body height to full content heightRaimund Schlüßler2020-09-051-1/+1
* | Add icon for dashboard app store categoryJulius Härtl2020-09-071-0/+4
|/
* Fix search placeholder animation & dark theme compatibilityJohn Molakvoæ (skjnldsv)2020-09-033-0/+7
* Fix contrast issue in Files app menuJan C. Borchardt2020-08-231-1/+3
* Adjust entry highlights of navigation and menus based on Vue component styleJan C. Borchardt2020-08-052-28/+30
* Merge pull request #22075 from nextcloud/bugfix/noid/prefer-emoji-fonts-over-...Morris Jobke2020-08-031-1/+1
|\
| * Also consider Noto Color Emoji fontJoas Schilling2020-07-311-1/+1
* | Fix unified searchJohn Molakvoæ (skjnldsv)2020-08-032-4/+6
|/
* Fix height to big for iPhone when using many appskevin1471472020-07-251-1/+1
* Move Cantarell before Ubuntu in font stack to fix GNOME + Ubuntu setupsJan C. Borchardt2020-07-211-1/+1
* Simplify text variables from 4 to 2, map -lighter to -maxcontrastJan-Christoph Borchardt2020-05-262-4/+4
* Fix color-text-maxcontrast not passing WCAG AAJan-Christoph Borchardt2020-05-071-1/+1
* Fix public layout header title & descriptionJohn Molakvoæ (skjnldsv)2020-04-301-2/+16
* Correctly hide table headers in filepickerRaimund Schlüßler2020-04-241-0/+2
* Fix breadcrumb in move or copy file dialogLoïc Hermann2020-04-171-2/+7
* Use the primary element color in case it primary color is too brightJoas Schilling2020-04-102-4/+4
* Fix systemtags overflowJohn Molakvoæ (skjnldsv)2020-04-091-1/+6
* Default to dark background in dark mode and better themed navbarJoas Schilling2020-04-072-2/+1
* Fix cursor on click inputs and their descendantsDaniel Calviño Sánchez2020-03-251-0/+16
* Fix color-box-shadow variableMarco Ambrosini2020-03-131-1/+1
* Merge pull request #19671 from nextcloud/fix-loading-icons-on-replaced-elementsRoeland Jago Douma2020-03-051-5/+5
|\
| * Adjust list of replaced elements to the specDaniel Calviño Sánchez2020-02-271-1/+1
| * Set loading image on replaced elements instead of on their descendantsDaniel Calviño Sánchez2020-02-271-4/+4
* | Fix non-centered no javascript messageGary Kim2020-02-291-1/+2
|/
* Update guest.cssMarc Michalsky2020-01-311-1/+1
* Center ButtonsMarc Michalsky2020-01-311-1/+1
* New file menu needs to be above the filelist headerJulius Härtl2020-01-241-1/+1
* Fix cursor on disabled contenteditable divsDaniel Calviño Sánchez2020-01-161-2/+0
* Add color background hover css variableMarco Ambrosini2020-01-161-0/+1
* Merge pull request #18873 from nextcloud/design/install-pageRoeland Jago Douma2020-01-151-0/+5
|\
| * Add explanatory bit for recommended apps, fix #18631Jan-Christoph Borchardt2020-01-141-0/+5
* | Fix max width on 2FA pagesChristoph Wurst2020-01-141-0/+4
|/
* Create hover color variableMarco Ambrosini2020-01-131-1/+2
* Merge pull request #18819 from nextcloud/bugfix/guest-container-sizeRoeland Jago Douma2020-01-111-1/+2
|\
| * Limit the size of the container on guest pagesJulius Härtl2020-01-101-1/+2
* | Merge pull request #18806 from nextcloud/bugfix/contactsmenu-fix-minRoeland Jago Douma2020-01-111-5/+7
|\ \
lt-src 'none';"); if (\OCP\Util::needUpgrade()) { // since the behavior of apps or remotes are unpredictable during // an upgrade, return a 503 directly throw new RemoteException('Service unavailable', 503); } $request = \OC::$server->getRequest(); $pathInfo = $request->getPathInfo(); if ($pathInfo === false || $pathInfo === '') { throw new RemoteException('Path not found', 404); } if (!$pos = strpos($pathInfo, '/', 1)) { $pos = strlen($pathInfo); } $service=substr($pathInfo, 1, $pos-1); $file = resolveService($service); if(is_null($file)) { throw new RemoteException('Path not found', 404); } $file=ltrim($file, '/'); $parts=explode('/', $file, 2); $app=$parts[0]; // Load all required applications \OC::$REQUESTEDAPP = $app; OC_App::loadApps(array('authentication')); OC_App::loadApps(array('filesystem', 'logging')); switch ($app) { case 'core': $file = OC::$SERVERROOT .'/'. $file; break; default: if (!\OC::$server->getAppManager()->isInstalled($app)) { throw new RemoteException('App not installed: ' . $app); } OC_App::loadApp($app); $file = OC_App::getAppPath($app) .'/'. $parts[1]; break; } $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; require_once $file; } catch (Exception $ex) { handleException($ex); } catch (Error $e) { handleException($e); }