Skip to content

Commit 6f5f28c

Browse files
authored
Hyperion logo align in WebUI (#896)
- DispmanX Grabber also used in PR builds - Removed unused build variable
1 parent df0d411 commit 6f5f28c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.ci/ci_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ elif [[ "$CI_NAME" == 'linux' ]]; then
5757
hyperionproject/hyperion-ci:$DOCKER_TAG \
5858
/bin/bash -c "mkdir hyperion && cp -r source/. /hyperion &&
5959
cd /hyperion && mkdir build && cd build &&
60-
cmake -DPLATFORM=${PLATFORM} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DDOCKER_PLATFORM=${DOCKER_TAG} ../ || exit 2 &&
60+
cmake -DPLATFORM=${PLATFORM} -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ../ || exit 2 &&
6161
make -j $(nproc) package || exit 3 &&
6262
cp /hyperion/build/bin/h* /deploy/ 2>/dev/null || : &&
6363
cp /hyperion/build/Hyperion-* /deploy/ 2>/dev/null || : &&

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ if ( "${PLATFORM}" MATCHES "osx" )
112112
include_directories("/opt/X11/include/")
113113
SET ( DEFAULT_OSX ON )
114114
SET ( DEFAULT_USB_HID ON )
115-
elseif ( "${PLATFORM}" STREQUAL "rpi" )
115+
elseif ( "${PLATFORM}" MATCHES "rpi" )
116116
SET ( DEFAULT_DISPMANX ON )
117117
SET ( DEFAULT_WS281XPWM ON )
118118
elseif ( "${PLATFORM}" STREQUAL "amlogic" )

assets/webconfig/css/hyperion.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ table.borderless td,table.borderless th{border: none !important;}
7979
table label{margin:0}
8080

8181
/*Header*/
82-
.navbar-brand{padding: 5px;padding-left:20px;height:60px;}
82+
.navbar-brand{padding-top:0px;padding-bottom:5px;padding-left:20px;height:60px;}
8383
.sidebar{margin-top:62px;padding-top:20px;}
8484
.dropdown{font-size:18px;}
8585
@media (max-width: 767px) {.sidebar{margin-top:0px;padding-top:0px !important;}}

0 commit comments

Comments
 (0)