diff --git a/public/static/css/rvr.css b/public/static/css/rvr.css index a350b4e..9608d75 100644 --- a/public/static/css/rvr.css +++ b/public/static/css/rvr.css @@ -385,13 +385,6 @@ main { padding: 6px 12px; } -main.full { - position: relative; - width: 100%; - height: calc(100% - 40px); - padding: 0; -} - footer { background-color: #869ab9; padding: 3px 6px; @@ -411,20 +404,6 @@ div.buttonContainer>button { margin: 0 auto; } -#cookiesNotice { - position: fixed; - left: 0; - bottom: 0; - right: 0; - margin: 20px; - background-color: #eeeeee; - border: solid #888888 1px; - border-radius: 3px; - padding: 10px; - text-align: center; - z-index: 10; -} - #loading { position: fixed; width: 64px; @@ -446,45 +425,6 @@ div.box { box-sizing: border-box; } -.circleControl { - position: absolute; - width: 60px; - bottom: 20px; - right: 10px; -} - -.circleControl .controlItem { - position: relative; - height: 60px; - margin-top: 10px; - opacity: 70%; - cursor: pointer; -} - -.circleControl .controlItem:hover { - opacity: 100%; -} - -.circleControl .controlItem div { - position: absolute; - width: 100%; - height: 100%; -} - -.circleControl .controlBackground { - width: 100%; - height: 100%; - opacity: 50%; -} - -.circleControl .controlIcon { - width: 75%; - height: 75%; - margin: auto; - margin-top: 50%; - transform: translateY(-50%); -} - @media screen and (max-width: 599px) { header h1 span { display: none; @@ -511,12 +451,6 @@ div.box { div.box { width: initial; } - .circleControl { - width: 45px; - } - .circleControl .controlItem { - height: 45px; - } } @media screen and (min-width: 600px) { @@ -546,12 +480,6 @@ div.box { padding-top: 10px; padding-bottom: 10px; } - .circleControl { - width: 45px; - } - .circleControl .controlItem { - height: 45px; - } } @media screen and (min-height: 400px) and (max-height: 499px) { diff --git a/public/static/js/rvr.js b/public/static/js/rvr.js index 07d6e37..dcf3d45 100644 --- a/public/static/js/rvr.js +++ b/public/static/js/rvr.js @@ -1,6 +1,5 @@ var RVR = { isSecure: window.location.protocol === 'https:', - cookiesAgreed: false, sessionAvailableHooks: {}, initGoogleAnalitics: function () { diff --git a/scripts/install.sh b/scripts/install.sh index 6ab342a..bd1bf30 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -9,9 +9,6 @@ if [ -f ${ROOT_DIR}/installed ]; then exit 1 fi -echo "Installing NPM packages..." -(cd ${ROOT_DIR}/multi && npm install) - echo "Installing Yarn packages..." (cd ${ROOT_DIR}/public/static && yarn install) diff --git a/scripts/update.sh b/scripts/update.sh index 1af37b9..bdaffb4 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -11,9 +11,6 @@ else (cd ${ROOT_DIR} && composer install --dev) fi -echo "Installing NPM packages..." -(cd ${ROOT_DIR}/multi && npm install) - echo "Installing Yarn packages..." (cd ${ROOT_DIR}/public/static && yarn install) diff --git a/tests/.gitkeep b/tests/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/views/tests/view_complex.php b/views/tests/view_complex.php deleted file mode 100644 index e9255eb..0000000 --- a/views/tests/view_complex.php +++ /dev/null @@ -1,22 +0,0 @@ -@css(test1.css) -@js(test1.js) -@js(test2_) - -@extra - -@endextra - -@extends(parent) - -@section(section1) -
Test HTML with @extends - section 1
-@endsection - -@section(section2) -
Test HTML with @extends - section 2
-@endsection - -@extra - -EXTRA -@endextra diff --git a/views/tests/view_invalid_multiple_extends.php b/views/tests/view_invalid_multiple_extends.php deleted file mode 100644 index f9fea38..0000000 --- a/views/tests/view_invalid_multiple_extends.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends(parent1) - -@extends(parent2) - -
Test HTML with multiple @extends
diff --git a/views/tests/view_invalid_multiple_sections_open.php b/views/tests/view_invalid_multiple_sections_open.php deleted file mode 100644 index 7832e04..0000000 --- a/views/tests/view_invalid_multiple_sections_open.php +++ /dev/null @@ -1,6 +0,0 @@ -@extends(parent) - -@section(section1) -@section(section2) - -
Test HTML with opening @section before previous closed
diff --git a/views/tests/view_invalid_section_not_open.php b/views/tests/view_invalid_section_not_open.php deleted file mode 100644 index 855a336..0000000 --- a/views/tests/view_invalid_section_not_open.php +++ /dev/null @@ -1,4 +0,0 @@ -@extends(parent) - -
Test HTML with @endsection when no section is open
-@endsection diff --git a/views/tests/view_invalid_section_without_extends.php b/views/tests/view_invalid_section_without_extends.php deleted file mode 100644 index ec143a6..0000000 --- a/views/tests/view_invalid_section_without_extends.php +++ /dev/null @@ -1,3 +0,0 @@ -@section(section1) - -
Test HTML with @section but without @extends
diff --git a/views/tests/view_with_assets.php b/views/tests/view_with_assets.php deleted file mode 100644 index d5076a7..0000000 --- a/views/tests/view_with_assets.php +++ /dev/null @@ -1,4 +0,0 @@ -@css(test.css) -@js(test.js) -@js(test_) -
Test HTML with @css and @js
diff --git a/views/tests/view_with_extends.php b/views/tests/view_with_extends.php deleted file mode 100644 index 0c3f301..0000000 --- a/views/tests/view_with_extends.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends(parent) - -@section(section1) -
Test HTML with @extends
-@endsection diff --git a/views/tests/view_without_extends.php b/views/tests/view_without_extends.php deleted file mode 100644 index 29864cd..0000000 --- a/views/tests/view_without_extends.php +++ /dev/null @@ -1 +0,0 @@ -
Test HTML without @extends
\ No newline at end of file