A pure CS3 triangle-based spinner with css animations.
A Pen by Ignacio Díaz-Roncero Fraile on CodePen.
// WARNING | |
// | |
// Note that this translation is *not* guaranteed to be up to date | |
// with the master Localizable.strings file (english). | |
// You should double-check to make sure that all entries in the | |
// master file are contained in this file as well. | |
// ATENCIÓN | |
// | |
// Tenga en cuenta que *no* se garantiza que esta traducción esté actualizada |
A pure CS3 triangle-based spinner with css animations.
A Pen by Ignacio Díaz-Roncero Fraile on CodePen.
{# | |
/** | |
* @file | |
* Theme override for a field. | |
* | |
* To override output, copy the "field.html.twig" from the templates directory | |
* to your theme's directory and customize it, just like customizing other | |
* Drupal templates such as page.html.twig or node.html.twig. | |
* | |
* Instead of overriding the theming for all fields, you can also just override |
{# | |
/** | |
* @file | |
* Theme override of a container used to wrap child elements. | |
* | |
* Used for grouped form items. Can also be used as a theme wrapper for any | |
* renderable element, to surround it with a <div> and HTML attributes. | |
* See \Drupal\Core\Render\Element\RenderElement for more | |
* information on the #theme_wrappers render array property, and | |
* \Drupal\Core\Render\Element\container for usage of the container render |
@mixin text-border($color) { | |
color: transparent !important; | |
text-shadow: | |
-1px -1px 0 $color, | |
1px -1px 0 $color, | |
-1px 1px 0 $color, | |
1px 1px 0 $color; | |
@at-root { | |
@supports (-webkit-text-stroke: 1px $color) { |
@mixin img-object-fit(){ | |
position:relative; | |
overflow:hidden; | |
img { | |
position:absolute; | |
top:50%; | |
left:50%; | |
transform: translate(-50%, -50%); | |
width: 100%; |
diff --git a/core/modules/views/config/schema/views.schema.yml b/core/modules/views/config/schema/views.schema.yml | |
index 21f606a329..5d2e57f31a 100644 | |
--- a/core/modules/views/config/schema/views.schema.yml | |
+++ b/core/modules/views/config/schema/views.schema.yml | |
@@ -139,6 +139,9 @@ views_block: | |
views_label: | |
type: label | |
label: 'Title' | |
+ offset: | |
+ type: integer |
// All credit goes to Ravikant Mane: | |
// Original comment: https://www.drupal.org/forum/support/post-installation/2013-07-16/removing-emoji-code#comment-11307453 | |
// Preserve the question marks by converting them to '{%}' placeholders. | |
$string = str_replace("?", "{%}", $string); | |
// Encode to and from an encoding type that doesn't support emojis. | |
// This will convert all emojis to the same character, in this case "question mark". | |
$string = mb_convert_encoding($string, "ISO-8859-1", "UTF-8"); | |
$string = mb_convert_encoding($string, "UTF-8", "ISO-8859-1"); |