A mixin is a way to enhance an object with properties or methods from another object without inheriting from that object.
0
votes
0answers
8 views
Sass extend with pseudo selectors
I am using compass to manage some sass files on mac osx. I have these files:
sass/
screen.scss
partials folder/
...
_fonts.scss
_functions.scss
...
1
vote
0answers
21 views
are there any good tutorials for using extensions/plugins for compass/sass to help figure out where I am going wrong
I am attempting to use compass-css-lightbox as part of my compass/sass project and after a lot of messing about I have come to the conclusion that I really don't understand enough to get it working ...
2
votes
1answer
38 views
Mixin multiple classes at once in Python?
Does anyone know how I might get the following piece of code to work?
def mixin(TargetClass, *args, **kwargs):
"""*args is a bunch of classes to mixin to the TargetClass"""
if ...
2
votes
2answers
38 views
LESS / javascript: convert regexp object to integer (calculation)
I want to convert the background position for vendor prefixed gradients, therefore I use a simple formula 90 - (@degree) according to this example it should be 90 - (135) = -45.
The important part is ...
0
votes
1answer
47 views
How to add a mixin to a chunk of CSS?
I made a huge mistake and I'm looking for some help.
After building a site with CSS, mobile-first responsive, with respond.js as a polyfill, after I tested it in IE compatibility mode during ...
1
vote
1answer
18 views
Less mixin with optional parameters
I have a Less mixin defined as:
.fontStyle(@family, @size, @weight: normal, @style: normal, @color: #ffffff, @letter-spacing: normal) {
font-family: @family;
font-size: @size;
color: @color;
...
1
vote
1answer
17 views
Overwrite less mixin
I wish to remove border radius from all the elements in Bootstrap. So I created custom-mixins.less and placed following lines in it, hopping that it would overwrite the original .border-radius mixin ...
1
vote
2answers
30 views
What is wrong with my box-shadow SASS @Mixin?
I am trying to find a working box-shadow @mixin for SASS.
My CodePen: http://codepen.io/leongaban/pen/nCDos
On stackoverflow I found this question and used it and the answer exactly, however I'm ...
0
votes
1answer
18 views
Get only the non-inherited fields for a Django mixin
I would like to get all the non-inherited fields defined in a model. That is, I want the fields defined only in the "submodel", not the base ('abstract') model. (Ultimate purpose: create a ModelForm ...
1
vote
2answers
51 views
Groovy mixin on Spring-MVC controller
I'm trying to use Groovy mixin transformation on a spring-mvc controller class but Spring does not pickup the request mapping from the mixed in class.
class Reporter {
@RequestMapping("report")
...
1
vote
1answer
26 views
C++ Mixins - Is this the correct way of implementing?
Hi all I have created a mixin class (super contrived) for printing out elements T (of some type T) which have a method called name().
I am wondering if this is considered the correct way to implement ...
0
votes
1answer
29 views
{LESS] multiple gradients with vendor prefixes
I want to create a background-image aka. gradient mixin with these features:
unlimited amount (not finished yet, but kinda works)
adapting vendor prefixes (partially works)
I tried lesshat, but ...
0
votes
2answers
29 views
Is it possible to mixin before the constructor is called?
I thought I'd make a mixin for logging to keep my code DRY. This is how it looks:
# Mixin that provides shortcuts for logging methods.
module Logging
def self.included(base)
base.class_exec {
...
1
vote
1answer
52 views
Java 8 extension methods - why are they not called mixins or traits? [closed]
As far as I know, Groovy already has mixins, Scala has traits. C family has multiple inheritance. So why is the new functionality in Java called "extension methods"? Is it just a different name for ...
0
votes
0answers
14 views
Ruby Module extension and ActiveRecord like interface
I want to make a Module that provides an interface that kind of looks like ActiveRecord::Base::has_one one: I want to introduce a class method available for each Class that extends this Module, and ...
0
votes
0answers
34 views
How to pass a mixin reference into another mixin as a mixin parameter in jade4j
What I want to achieve is as follows in jade4j -
mixin mixin_a()
p This is mixin A
mixin mixin_b(mixin_reference)
p This is mixin B
+mixin_reference()
+mixin_b(mixin_a)
Here I am passing ...
0
votes
1answer
29 views
“return this” from mixins
When adding a runtime mixin, return this returns the type of the mixin, not the class that has been mixed into, and even setting the return type of the method won't force conversion, but instead throw ...
0
votes
3answers
55 views
Groovy metaClass closures vs dynamic mixins
So I want to add methods to JDK classes like InputStream, File, etc. I'm trying to figure out what is the best way to do that, but it seems there are several options for doing it. One way is do this ...
0
votes
1answer
20 views
Compass grid mixin generating over 16,000 characters of CSS
Today I installed Compass and thought I'd try to generate a grid background to help me line things up.
I checked the docs ...
0
votes
1answer
22 views
Abstract method and mixin in python
I'd like to submit a code pattern I often see in my python code, here at work, and I'm not satisfy with it and I'd like a better solution.
Here is what we have today:
class AbstractClass(object):
...
0
votes
0answers
18 views
Using interpolation for calling compass sprite mixins
the problem that i have with this mixing is that i can't interpolation for calling different sprite mixins that compass provides.
I want to be able to have this in one place, create the sprites in ...
0
votes
1answer
11 views
Using multiple mixin's in one include in sass
Can multiple Mixin's be passed into an include in sass.
example
@mixin something{
//css declarations
}
@mixin somethingElse{
//css declarations
}
Can I do the following
.class{
@include ...
0
votes
1answer
17 views
Sass: calling my own mixin within +background() results in “doesn't support keyword arguments”
I'm pretty new to Sass. This is my mixin:
= foo($param1, $param2: 0, $param3: 123)
something: $param1
otherthing: $param2
yetanotherthing: $param3
When I call it like this:
div.foo
...
1
vote
1answer
72 views
Ruby, mixin instance variables and methods
I have two files, one with module ToMix:
module ToMix
@module_var = "modulevar"
def self.mix_function
puts "mix_function SELF: #{@module_var}"
end
def mix_function
...
0
votes
2answers
29 views
define different css for different classes in less css
I looking as an alternative as how i can define separate css for different classes in a same less structure, i have this..
.dropdown-menu, .team-contact {
li {
a {
...
1
vote
1answer
33 views
Is it possible for a Python mixin to access a global variable?
I have a mixin that defines finalize_response() method intended to override in another class:
class APILoggingMixin(object):
"""
Provides logging functionality by overriding ...
3
votes
2answers
162 views
Understanding ruby metaprogramming using method_added to overwrite instance methods dynamically
I have the following code from Programming Ruby 1.9 (slightly adapted) I just want to ensure my thought process is accurate
module Trace
def self.included(culprit)
#Inject existing methods with ...
1
vote
1answer
40 views
What is the difference between WinJS.Binding.mixin and WinJS.Binding.dynamicObservableMixin?
In WinJS there are three binding related mixins:
WinJS.Binding.observableMixin
WinJS.Binding.dynamicObservableMixin
WinJS.Binding.mixin
Both WinJS.Binding.mixin and ...
0
votes
1answer
115 views
Extending Twitter's Bootstrap 2.x default grid (span classes) with less mixins
So I think I'm just starting to understand less and bootstrap. I am building a responsive theme and one of the issues I have is I have a span with a 1px border, this 1px border naturally increases the ...
1
vote
2answers
58 views
Groovy Mixin use method of mixed class
Consider a mixin class
class StringPlusMixin {
String plus(String other) {
return toString() + other
}
}
And his use case
@Mixin(StringPlusMixin)
class POGO {
String descr
String ...
0
votes
0answers
29 views
Separating attr_accessible using two different models with the same table
I want to separate validation and attr_accessible using two different models, which refers to the same table and includes the same mixin.
require 'rfc822'
class UserForAdmin < ActiveRecord::Base
...
0
votes
1answer
14 views
Create default folder locations for quick reference…with mixins?
I'm not sure if this is possible to achieve with mixins specifically, but hey, that's why I'm here.
I'm a recent convert to sass, and I'm working on a site with quite long path names. e.g. ...
2
votes
2answers
43 views
In Ruby, what are the naming conventions for mixins when there is no proper english “<verb>able”?
Example: I have a Person class and a Role class. I want to extract the role functionality from both Role and Person into a mixin. I get two mixins: Actable to be included in Role and Adaptable for ...
0
votes
1answer
30 views
Combine extend and mixin in with same rules
Okey!
I have couple of extends in sass like
%heading
%paragraph
%gutter
and so on...
I want to reuse thouse in media queries, but that doesnt work. I know that.
Then i came up with the idea to ...
1
vote
1answer
44 views
is there a way to escape @ when writing Mixins in SASS?
I am trying to write a mixin for animations in css3. An animation in css3 requires an @keyframe. But a mixin declaration in SASS (and other declarations) start with @ too. Like @mixin, @for, etc... So ...
1
vote
1answer
30 views
LESS: Mixin with a unique argument to manage css3 transitions
Using LESS CSS, I would like to simplify my code using Mixins to put "out" transitions declarations, but the following syntax is wrong. The problem is in the attribute @color-time definition that has ...
0
votes
0answers
48 views
Understanding Ruby Classes and Modules
I have a number of questions regarding ruby classes and modules. I have written a number of test files to kind of explore them further that are too long to post here ...
1
vote
2answers
78 views
Groovy way to selectively mixin methods from multiple classes
I'm writing a Groovy script based on commons-io that monitors some source directory and synchronizes its files with some destination directory.
@Grab(group='commons-io', module='commons-io', ...
0
votes
1answer
14 views
SCSS if directive: how to pass multple variables?
How would I write this code so I check for both the truthiness of $text-shadows as well as $shadows?
.btn {
@if $text-shadows {
@include text-shadow-black;
}
@if $shadows {
@include ...
0
votes
2answers
61 views
Using an object oriented approach in Ruby
I have two classes, Class A and Class B.
I've recently noticed that they share a lot of the same code. For example:
def viewable_by?(user)
super || clinic.has_staff_member?(user) || ...
0
votes
0answers
17 views
Rails plugin mixins work on first request, but not subsequent requests
I have a Rails 2.3.17 app.
In vendor/plugins/myplugin/lib/init.rb I have...
Question.class_eval do
def mymethod
# do something
end
end
...where Question is model in the main ...
0
votes
2answers
36 views
What are best practices for tracing the flow of a large rails app?
If you are a new developer to a large (very large!) rails app it can be really difficult to trace through the flow of what is calling what, where a method is defined, and how to 'grok' how the whole ...
1
vote
1answer
27 views
Having trouble with LESS and Mixins
From what I understand this is valid LESS syntax :
.some-mixin(@color)
{
border-top:1px solid @color;
}
.some-element {
.some-mixin (#FFFFFF);
}
And would result to this :
.some-element {
...
0
votes
2answers
29 views
LESS - set 3 variables depending on another variable's value
I've got a mixin that accepts two parameters:
.build-logo(ab, 200px);
The first is an acronym string for one of our products, and the second is square width/height of the desired logo. What I need ...
0
votes
0answers
46 views
Mixins in C++ vs Mixins in Java
I understand the concept of mixins and templates but I'm having a hard time understanding this problem specifically:
template<class T>
class LogTask : public T ...
0
votes
0answers
23 views
How to maintain better SCSS Mixins
I created a module for buttons as a SCSS Mixin after i read this article:
@mixin buttons{
.btn,button{
@include button;
&.blue{@include button(regular,#886AFF,#000000);}
...
1
vote
1answer
90 views
Sass - Nested @each loop and nth to grab separate values
I'm trying to write a CSS3 gradient mixin that also produces SVG for IE9.
I want to pass in a large string (a list) of the nodes' colours and positions which are comma separated but also split these ...
2
votes
1answer
83 views
Assign content to multiple blocks inside a mixin which generates a nested HTML structure dynamically in Jade?
I want to create the following HTML structure
<div class="outerspace">
<div class="inner1"><p>Inner1 content</p></div>
<div class="inner2"><p>Inner2 ...
1
vote
1answer
70 views
When calling a mixin in Jade, what's the difference between “+” and mixin keyword?
The docmentation tells us to call a mixin by prepending the keyword mixin to the actual mixin.
.bar
mixin foo(arguments)
But on different places I saw people calling a mixin by prepending a ...
2
votes
1answer
56 views
SASS Mixin not producing the expected result
I'm using SASS for a project for the first time and I love it. I never want to write plain CSS ever again. I am however a little confused by the following scenario and hopefully I am missing ...






