Fixes border radius.

This commit is contained in:
yanas 2017-01-26 17:04:29 -06:00
parent cd5e84e4ef
commit 23935d3d39
4 changed files with 20 additions and 20 deletions

View File

@ -1,6 +1,6 @@
.inlay { .inlay {
margin-top: 14%; margin-top: 14%;
@include border-radius(3px); @include border-radius(4px);
padding: 40px 38px 44px; padding: 40px 38px 44px;
color: #fff; color: #fff;
background: $inlayColorBg; background: $inlayColorBg;

View File

@ -10,7 +10,7 @@
color: $popoverFontColor; color: $popoverFontColor;
background-color: $popoverBg; background-color: $popoverBg;
background-clip: padding-box; background-clip: padding-box;
border-radius: 3px; border-radius: $borderRadius;
/*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/ /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
/*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/ /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
white-space: normal; white-space: normal;

View File

@ -1,18 +1,18 @@
@charset "UTF-8"; @charset "UTF-8";
/*! /*!
* jQuery contextMenu - Plugin for simple contextMenu handling * jQuery contextMenu - Plugin for simple contextMenu handling
* *
* Version: v2.1.1 * Version: v2.1.1
* *
* Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF) * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
* Web: http://swisnl.github.io/jQuery-contextMenu/ * Web: http://swisnl.github.io/jQuery-contextMenu/
* *
* Copyright (c) 2011-2016 SWIS BV and contributors * Copyright (c) 2011-2016 SWIS BV and contributors
* *
* Licensed under * Licensed under
* MIT License http://www.opensource.org/licenses/mit-license * MIT License http://www.opensource.org/licenses/mit-license
* *
* Date: 2016-02-28T09:53:18.890Z * Date: 2016-02-28T09:53:18.890Z
*/ */
@font-face { @font-face {
font-family: "context-menu-icons"; font-family: "context-menu-icons";
@ -88,7 +88,7 @@
list-style-type: none; list-style-type: none;
background: #fff; background: #fff;
border: 1px solid #bebebe; border: 1px solid #bebebe;
border-radius: 3px; border-radius: $borderRadius;
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
box-shadow: 0 2px 5px rgba(0, 0, 0, .5); box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
} }
@ -156,8 +156,8 @@
transform: translateY(-50%); transform: translateY(-50%);
} }
/** /**
* Inputs * Inputs
*/ */
.context-menu-item.context-menu-input { .context-menu-item.context-menu-input {
padding: 5px 10px; padding: 5px 10px;

View File

@ -19,7 +19,7 @@
&__background { &__background {
@include topLeft(); @include topLeft();
background-color: black; background-color: black;
border-radius: $borderRadius - 1; border-radius: $borderRadius;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }