summaryrefslogtreecommitdiffstats
path: root/css/custom.css
blob: 25a124b6dd145a76707ccb884b703a7cd117a878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * Add your custom styles here
 */
#app-content .custom-heise-de .body p > span:first-child {
    display: inline-block;
    float: left;
    margin-right: 10px;
    padding: 6px 0;
}

#app-content .custom-slashdot-org .body div > i {
    display: block;
    border-left: 1px solid rgb(210, 210, 210);
    margin: 25px 0;
    padding: 0 0 0 15px;
}

#app-content .custom-sueddeutsche-de .body img {
    float: none !important;
}
span>- php: 5.6 env: DB=pgsql CORE_BRANCH=master fast_finish: true before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start # re-enable once mariadb is added as an option # - if [[ "$DB" == 'mysql' ]]; then sudo apt-get -y install mariadb-server; fi - nvm install 6 - npm install -g npm@latest - make # install core - cd ../ - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH nextcloud - mv news nextcloud/apps/ before_script: - if [[ "$DB" == 'pgsql' ]]; then psql -c "CREATE ROLE oc_autotest LOGIN PASSWORD 'oc_autotest'" -U postgres; fi - if [[ "$DB" == 'pgsql' ]]; then psql -c "CREATE DATABASE oc_autotest OWNER oc_autotest;" -U postgres; fi - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'CREATE DATABASE oc_autotest;'; fi - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'oc_autotest';"; fi - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "GRANT ALL ON oc_autotest.* TO 'oc_autotest'@'localhost';"; fi # fill nextcloud with default configs and enable news - cd nextcloud - mkdir data - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass="oc_autotest" - ./occ app:enable news - ./occ app:check-code news - ./occ background:cron # enable default cron - php -S localhost:8080 & - cd apps/news script: - make test after_failure: - cat ../../data/nextcloud.log addons: firefox: "latest" postgresql: "9.4" services: - mysql