Tagged Questions

Expressive, robust, feature-rich CSS language built for Node.js

learn more… | top users | synonyms

2
votes
1answer
42 views

Anyone know a Objective-C Stylus Parser?

I´m coding a native objective-c app for my regularly webdev work. It´s a CSS editor that modifies the css source of a website in realtime as I type (no reload). That works actually. But I would like ...
2
votes
0answers
423 views

Basic Express + Stylus setup question (getting ENOENT)

UPDATE: After updating to stylus 0.7.4 and express 2.3.12 I can no longer reproduce this. Presumably it was a bug somewhere in an earlier version of stylus. I'm trying to get the most basic express ...
2
votes
2answers
1k views

How to get Stylus to work with Express and Connect in CoffeeScript

My app.coffee looks like this: connect = require 'connect' express = require 'express' jade = require 'jade' stylus = require 'stylus' app = express.createServer() # CONFIGURATION app.configure(() ...
2
votes
1answer
1k views

Stylus and Express - stylesheets are not re-compiled when modified

I am running latest version of Node on Mac OS X. I've installed Express together with Stylus. Also the latest versions. Stylus is not re-compiling my .styl files, when I modify them. How can I fix ...
2
votes
2answers
451 views

node.js stylus imports automatic rebuild, expire?

How do I get stylus to rebuild the css (including imports) automatically upon node restart and append the timestamp? The problem as schaermu puts it: My stylus stylesheets were always ...
1
vote
1answer
31 views

Can I render css dynamically with Express.js?

I want to render css which is generated on the fly at each request. For example, in Express.js I have a route: /clients/:clientId/style.css When I get a matching request, I want to look up the ...
1
vote
1answer
25 views

Filtering inside a stylus selector

I have several .list elements which all need a red color. Of these .list elements, the ones with class .foo would need a bigger font, whereas .bar would need a smaller font. In CSS, it would be along ...
1
vote
2answers
133 views

CSS special classes, like “:-moz-placeholder”

I've seen CSS styling along the following lines: input::-webkit-input-placeholder {...} or input:-moz-placeholder {...} And they raise a few questions for me: What are these things called? ...
1
vote
1answer
147 views

Stylus ParseError: expected “indent”, got “outdent”

Stylus ParseError: expected "indent", got "outdent" Unable to compile Stylus file app/css/app.styl to CSS: ParseError: app/css/provider.styl:22 18| padding-top: 20px 19| text-align: center ...
1
vote
0answers
143 views

pen/stylus support in web browsers

Are there any web browsers that make pen/stylus specific events (such as pressure) available to the DOM, similar to Microsoft's RealTimeStylus API? Is there any standard DOM interface for this? If ...
1
vote
3answers
696 views

How do you retrieve stylus pressure information on windows?

Is anyone aware of a sane way to get tablet/stylus pressure information on Windows? It's possible to distinguish stylus from mouse with ::GetMessageExtraInfo, but you can't get any more information ...
0
votes
0answers
23 views

How to configure Stylus with Express and CoffeScript

(sorry for my english) I try to configure stylus but when i write app.use stylus.middleware debug: true force: true src: __dirname + '/stylus' dest: __dirname + '/public' And got to ...
0
votes
0answers
20 views

SASS/Stylus - Define a List Dinamically

I started playing with SASS and Stylus but I'm having trouble pushing elements onto a list, for instance: $names: adam john wynn mason kuroir .photos @each $name in $names .photo-#{$name} ...
0
votes
0answers
27 views

How do you create multiple CSS files with Stylus?

I'm working on a application that will have a desktop/laptop web page component and a iPad component. Both components are from Node and Stylus. How can I create two CSS files from a single Stylus ...
0
votes
0answers
18 views

How to make generic Stylus mixins for a certain prefix?

I'm currently using Stylus to get around vendor specific CSS properties: vendor(prop, args) -webkit-{prop} args -moz-{prop} args -ms-{prop} args -o-{prop} args {prop} args ...
0
votes
1answer
24 views

cannot install stylus using node

I have downloaded the stylus .zip from Github and have placed it into the same directory as the node executable. After that I run the following code: install stylus But I do not get a response. The ...
0
votes
1answer
93 views

Install Stylus manually in Node.js with Cygwin

after a few tries I successfully install nodejs in windows with cygwin... And when I find out that I can't install npm in windows, I wonder... How can I install the Stylus manually?? I downloaded ...
0
votes
1answer
84 views

Generic `vendors` mixin

Defining vendors' mixins is common task under LESS, ie: .box-shadow() { -moz-box-shadow:@arguments; -webkit-box-shadow:@arguments; -o-box-shadow:@arguments; ...
0
votes
2answers
139 views

Changing stroke color dynamically

I am using stylus input to draw lines in a canvas. I want to change the color of the stroke with the pen pressure. so I used: DrawingAttributes dattribute = new DrawingAttributes(); ...
0
votes
0answers
100 views

Trouble blocking WM_LBUTTONDOWN from a pen tablet / stylus

In my (WPF) project I hide my main window (all but the top 24 pixels) when the mouse leaves the client area and unhide it when the mouse enters the client area. I do this by multiplying the window's ...
0
votes
2answers
95 views

SocketStream: conditionally loading Stylus files?

How would I go about doing something like using x.styl for one part of my app and y.styl for another part? It seems that all css is contained in app.styl and I can't conditionally load sheets ...
0
votes
1answer
140 views

Reacting to StylusDown in control's UI?

I'm building a touch screen application in WPF and I'm wanting to show a change in UI when the user presses a button with their finger/stylus. Currently you only get a flicker of UI change once the ...
0
votes
1answer
110 views

Disable Stylus Gestures for WinForm

I need to disable all stylus gestures for a winform. I want the stylus to function normally (i.e. basically as a mouse substitute) but the stylus gestures are majorly in the way. Ideally, the gestures ...
0
votes
1answer
524 views

Javascript mouse tracking speed

I was working on a tablet PC using zoho notebook (http://notebook.zoho.com) earlier today and noticed that stylus input is not as accurate or smooth as something like say, OneNote. It seems like the ...
0
votes
4answers
478 views

What happens when the stylus “lifts” on a tablet pc? How best to capture that event?

I am working on a legacy project in VC++/Win32/MFC. Recently it became a requirement that the application work on a tablet pc, and this ushered in a host of new issues. I have been able to work with, ...