commit
27ad69eea5
@ -0,0 +1,22 @@ |
||||
@media only screen and (max-width: 600px) { |
||||
|
||||
/* compress search box on mobile, expand when focused */ |
||||
.searchbox input[type="search"] { |
||||
width: 15%; |
||||
-webkit-transition: width 100ms; |
||||
-moz-transition: width 100ms; |
||||
-o-transition: width 100ms; |
||||
transition: width 100ms; |
||||
} |
||||
.searchbox input[type="search"]:focus, |
||||
.searchbox input[type="search"]:active { |
||||
width: 155px; |
||||
} |
||||
|
||||
/* do not show display name on mobile when profile picture is present */ |
||||
#header .avatardiv.avatardiv-shown + #expandDisplayName { |
||||
display: none; |
||||
} |
||||
|
||||
|
||||
} |
||||
@ -0,0 +1,34 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Bjoern Schiessle <schiessle@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
class Test_Urlgenerator extends PHPUnit_Framework_TestCase { |
||||
|
||||
|
||||
/** |
||||
* @small |
||||
* @brief test absolute URL construction |
||||
* @dataProvider provideURLs |
||||
*/ |
||||
function testGetAbsoluteURL($url, $expectedResult) { |
||||
|
||||
$urlGenerator = new \OC\URLGenerator(null); |
||||
$result = $urlGenerator->getAbsoluteURL($url); |
||||
|
||||
$this->assertEquals($expectedResult, $result); |
||||
} |
||||
|
||||
public function provideURLs() { |
||||
return array( |
||||
array("index.php", "http://localhost/index.php"), |
||||
array("/index.php", "http://localhost/index.php"), |
||||
array("/apps/index.php", "http://localhost/apps/index.php"), |
||||
array("apps/index.php", "http://localhost/apps/index.php"), |
||||
); |
||||
} |
||||
} |
||||
|
||||
Loading…
Reference in new issue